I'd be okay with a "hack" that prevented the rewrite of /?page=confirm as it's the only page that needs access to the post data, but I'm not sure how to go about excluding that in the rewrite conditions. I would prefer an actual fix as opposed to a hack, though.
Here is the .htaccess file I'm using:
RewriteEngine on
Options +FollowSymlinks
RewriteBase /
RewriteCond %{REQUEST_URI} !\.(css|js|jpe?g|png|gif|ttf|eot|swf)$ [NC]
RewriteRule ^([^/]+)/? index.php?page=$1 [L,QSA]
RewriteCond %{QUERY_STRING} (.*?)page=(\w+)(.*)
RewriteRule ^ /%2?%1%3 [L,R=301]
This post has been edited by Atli: 25 November 2012 - 09:53 AM

New Topic/Question
Reply



MultiQuote




|