hi, - What I want to do: * I have a site e.g. http://mysite.com * If someone types http://mysite.com/fake_url, they will be redirected to /var/something/project/index.html (this is outside of mysite directory) * The end url will be something like http://mysite.com/project/index.html - What I did & it is not working: RewriteCond %{HTTP_HOST} ^mysite\.com$ [NC] RewriteRule ^fake_url/?$ /var/something/project/index.html