I need to replicate the functionality of mod_alias
which I can't use directly because I'm on shared hosting, and Alias statements don't work in .htaccess.
What I want to achieve is essentially
Alias /manual /www/customer/some_other_dir/manual
I am trying mod_rewrite:
RewriteRule ^/manual/(.*) /www/customer/some_other_dir/manual/%1?%{QUERY_STRING} [L]
this will never match any calls to www.example.com/manual
.
Why not? What am I doing wrong?