I am using rewrite for my site but there is a problem. When I upload a folder "abc" then enter the url/abc it shows 404 for me. How to disable rewrite for the folder in .htaccess
It is wordpress rewrite # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Code (markup): I want to upload a new folder at the root but it only shows 404 error.
ack...wordpress. Make a post over on their support board. RewriteRule . /index.php [L] is probably doing it.