[ale] apache2 Proxypass

Jay Loden ale at jayloden.com
Tue Jul 17 15:31:00 EDT 2007



Chris Woodfield wrote:
> Even stranger, I tried fixing this by adding a RewriteRule, and that  
> doesn't even seem to be working:
> 
> RewriteEngine           On
> RewriteRule             ^tivo$  tivo/
> 
> Is my syntax correct here? The goal is to rewrite "http:// 
> www.semihuman.com/tivo" to "http://www.semihuman.com/tivo/".
> 
> -C

Try this: 

RewriteEngine on
RewriteBase /

RewriteRule   ^tivo$        /tivo/


If that doesn't work, you might want to check if the problem is that your Request URI is actually coming in as /tivo and not just 'tivo' (in which case your ^tivo won't match). 

-Jay




More information about the Ale mailing list