I am looking for an Apache redirect where the source URL has a question mark in it.

Redirect permanent /course/view.php?id=68 http://exmaple.com/page.php

I've tried escaping the question mark, but that doesn't work. I've read a couple pages on the web about using Rewrite conditions, however it didn't quite make sense to me, or it was a little bit different than what I wanted to accomplish.

link|improve this question

Have you tried puttin quotes around it? "/course/view.php?id=68" – Iznogood Feb 7 at 19:32
I tried single quotes earlier, would double quotes make a difference? – Bobby S Feb 7 at 19:44
feedback

1 Answer

up vote 1 down vote accepted

Try adding the following to the .htaccess file in the root directory of your site.

RewriteEngine on
RewriteBase / 

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /course/view\.php\?id=68 [NC]  
RewriteRule ^ http://exmaple.com/page.php [L,R=301]   
link|improve this answer
This works, however it carries the ?id=68 with it and appends to the destination URL – Bobby S Feb 7 at 20:57
1  
@BobbyS: Change last line to: RewriteRule ^ http://exmaple.com/page.php? [L,R=301] – anubhava Feb 7 at 20:58
That did it, thanks. – Bobby S Feb 7 at 22:13
feedback

Your Answer

 
or
required, but never shown

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