21285 Posts in 5732 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 191 Views |
-
htaccess rewrite

4 May 2012 at 8:39pm
Hi everyone
I have a site that was a .aspx site we have merged over to SS
I have a rewrite rule in place...
RewriteRule ^resortdetails.aspx?ResortCode=2068 inspireme [R=301,NC,L]
But it doesnt work, any ideas?
This works fine...
RewriteRule ^resortdetails.aspx inspireme [R=301,NC,L]
... but i need to it handle different IDs to point to different sections of the site.Thanks in advance!
-
Re: htaccess rewrite

4 May 2012 at 9:26pm
You're in luck - I had to do the exact thing last week... one of these for each...
RewriteCond %{REQUEST_URI} ^/resortdetails\.aspx$
RewriteCond %{QUERY_STRING} ^ResortCode=2068$
RewriteRule ^(.*)$ http://www.somefulldomain.com/inspireme [R=301,L]If you can tell me how to redirect to a "clean" URL without still passing the params then I'd love to hear back
| 191 Views | ||
|
Page:
1
|
Go to Top |


