hello /usr/local/apache/htdocs re rewrite to /usr/local/apache/htdocs/tempdir Can anyone suggest ?? thanks in advance
Instead. Why do not add a header on your index.php file? header('location: http://yoursite.com/to-this-redirect'); PHP:
I'm not an expert with .htaccess code, but you could try: [/code] RewriteCond %{REQUEST_URI} (.*) RewriteRule (.*) /tempdir/$1 [L] [/code] This should effectively add "/tempdir/" to the beginning of all HTTP requests to your server. If you only want to redirect URLs in the root directory, you'll need to find someone better at writing this stuff. Good luck!