Dear people, please help me from not getting crazy!
My situation:
- WP in root/wordpress
- Another system running in root/sgform
WP and the index.php in sgform are running fine, root/sgform/subfolder gives a 404. Appearenty a htacces problem, but i didn't find the right solution. The first sgform folder seems to be excluded properly but the subfolders of this folder (root/sgform/subfolder) are not. Thanks!
This is my htacces in root
Removing the sgform line doesn't change a thing to those files btw...
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/(sgform|sgform/.*)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress