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

Popular posts from this blog

java - How to pass parameters between Request-Scoped Controllers? -

actionscript 3 - Flex: moving a point with rotation doesnt change the point XY? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -