vote up 0 vote down star

I have this old survey link that is has been superseded by another link, so basically I want anyone trying to access the URL:

http://mywebsite.com/survey/view_survey.php?surveyID=1

To be redirected to:

http://mywebsite.com/survey/view_survey.php?surveyID=2

Can I do this in the Apache configuration or htaccess file?

I tried the following rule in the Redirect section of my httpd.conf file:

Redirect 301 /survey/view_survey.php?surveyID=1 http://mywebsite.com/survey/view_survey.php?surveyID=2

But it doesn't work. I am suspecting that the GET parameters are not used when processing the rule.

Is my only option to hack my code to redirect on a specific surveyID?


Following the suggestion of using the Rewrite rules, I tried the following in my .htaccess file:

RewriteRule ^survey/view_survey\.php\?surveyID=1525$ /survey/view_survey.php?sur
veyID=1607

But that doesn't work. I do have the rewrite engine up and running, because I have another rewrite rule currently running.

flag
For my own knowledge, why is getting the .htaccess file going easier than a line of php? – MrChrister Feb 24 at 22:43

3 Answers

vote up 3 vote down check

Try this in a .htaccess file:

RewriteEngine on
RewriteCond %{QUERY_STRING} (^|.*&)surveyID=1525(&.*|$)
RewriteRule ^survey/view_survey\.php$ /survey/view_survey.php?%1surveyID=1607%2 [L,R=301]
link|flag
Didn't work out. I got into a loop. URL was /survey/view_survey.php?surveyID=1607&surveyID=1607(.. repeated a bunch of times)&surveyID=1525 FireFox gave me the error: Redirect Loop Firefox has detected that the server is redirecting the request for this address in a way that will never complete. – rlorenzo Feb 24 at 22:21
It seems that the QSA flag causes this behavior. – Gumbo Feb 24 at 22:39
vote up 0 vote down

Check out the QSA portion of the mod_rewrite.

It does GET string manipulation.

link|flag
QSA won't help here because it's the match pattern that's wrong – Greg Feb 24 at 22:11
vote up 0 vote down
RewriteEngine On
RewriteCond %{QUERY_STRING} ^surveyID=1525$
RewriteRule ^/survey/view_survey\.php /survey/view_survey.php?surveyID=1607 [R=301]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.