I looked and haven't thus far found a similar question on SO. I want to redirect all my files and folders (directories) from www.example.com/* to www.example.com/website/. My current .htaccess is:
RewriteEngine on
# To set your custom php.ini, add the following line to this file:
# suphp_configpath /home/yourusername/path/to/php.ini
RewriteCond %{HTTP_HOST} ^example\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^/?$ "http\:\/\/www\.example\.com\/website\/" [R=301,L]
Redirect 301 /* http://www.example.com/website/
However it is not working.
/* -> /website/) – LazyOne Mar 21 '12 at 15:28