[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] apache2 Proxypass
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