ISAPI Redirect in httpd.ini doc
-
Hi folks,
Due to working on a site older than myself, I find myself in a position whereby I need to set up some redirects in the httpd.ini document. I had wrongly assumed this would be in the same way as I would in htaccess, but alas, no dice.
There's nothing special about what I'm trying to do, but I think the expressions are what are confusing me.
I'm trying to redirect this example page - http://www.example.com/subfolder/DisplayArticle.asp?ID=12345 to it's subfolder http://www.example.com/subfolder/.
Here's what I have:
[ISAPI_Rewrite]
Redirecting old article to new locations
RewriteRule ^/subfolder/DisplayArticle.asp?ID=12345 /subfolder/ [R=301,L]
Can someone please point me in the right direction?
Thanks
Matt
-
It does not understand mod_rewrite R=301[RP]
is the equilvalenton the actual base syntax, I am not completely sure, but I believe it would stay the same
-
Thanks Shane. My syntax wasn't perfect, but after messing about with a few different ones, and closing with [RP], I managed to get it to work.
Many thanks!