This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
If you want October CMS to ignore specific sub-folder rather than returning a 404 then add the following rule in .htaccess right after RewriteEngine On:
RewriteRule ^(foobar1|foobar2)($|/) - [L]
Where, foobar1 and foobar2 are sub-folders.
Reload your Apache config and it should work.
Last updated
Remember, when you r using Wordpress within a subfolder,
you must configure his own .htaccess, just like this:
RewriteEngine On
RewriteBase /subfoldername
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /subfoldername/index.php [L]
Last updated
RewriteRule ^(foobar1|foobar2)($|/) - [L]
After searching far and wide, this is the only thing that worked.
Last updated
1-5 of 5