.htaccess redirect anywhere except a specific directory
I'd like to edit .htaccess so that it would display a redirect to my /ma开发者_C百科in/ directory when I visit a page that is not in the /main/ directory. How would I go on about doing this?
I think:
RewriteCond %{REQUEST_FILENAME} !^main/.*
RewriteRule ^(.*)$ redirect_file.php [L]
would do it
精彩评论