I have a WordPress website with permalinks with post name. Now I have a new template on a specific page that uses files from exactly the same url path, and I can’t change that.
How can I make WordPress access my requested page (example.com/meniu/) and ignore the folder name with same name? (example.com/menu/swf/)
Thank you!
This is my .htaccess. How can I add exclusions?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /club/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /club/index.php [L]
</IfModule>
You could prepend another rule to exclude only that directory: