Wordpress - Permalinks and folders (.htaccess ?) -
Wordpress - Permalinks and folders (.htaccess ?) -
i have wordpress website permalinks post name. have new template on specific page uses files same url path, , can't alter that. how can create wordpress access requested page (example.com/meniu/) , ignore folder name same name? (example.com/menu/swf/)
thank you!
this .htaccess. how can add together 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 prepend rule exclude directory:
rewritecond %{request_uri} ^/menu rewriterule . /club/index.php [l] rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule . /club/index.php [l]
wordpress .htaccess mod-rewrite url-rewriting
Comments
Post a Comment