.htaccess - Exclude a page from rewrite in WordPress -


have standard htaccess wordpress

<ifmodule mod_rewrite.c>   rewriteengine on   rewritebase /   rewriterule ^index\.php$ - [l]   rewritecond %{request_filename} !-f   rewritecond %{request_filename} !-d   rewriterule . /index.php [l] </ifmodule> 

am using wishlist member on site requires registration url of http://www.mydomain.com.au/index.php?/register/member

the above htaccess rewrites http://www.mydomain.com.au/?/register/member

hence link not work.

trolled everywhere cannot seem find solution.

any assistance woul dbe appreciated.

was wishlist member issue. resolved later update.


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -