skip to Main Content

GET Variable lost on RewriteRule – Apache

I have written a redirect to change quiz.php?quiz=1 to /quiz/1 however PHP can no longer pickup the GET Variables, is there anything i'm missing? This is my htaccess file: RewriteEngine On RewriteCond %{SCRIPT_FILENAME} !-d RewriteCond %{SCRIPT_FILENAME} !-f RewriteRule ^quiz/([^/]*)$ /quiz.php?quiz=/$1…

VIEW QUESTION
Back To Top
Search