shanejeffery86 Posted September 30, 2009 Share Posted September 30, 2009 Hey all. I have heard that this is the best solution to my current situation, but heck if I can figure out how to implement it properly. What I want to do is a mod rewrite match 301 redirect. Here is the HTAccess code that I have at the moment: RewriteCond %{FeatureID} ^string1$ [NC] RewriteRule (my site url)\string2 [L,R=301] What I want to happen is that if the "FeatureID" is found on the URL, to take the FeatureID value and give it to the RewriteRule. Such as: index.cfm?fuseaction=Feature.showFeature&FeatureID=363 to /363 Any ideas what I am doing wrong? Thanks! Quote Link to comment https://forums.phpfreaks.com/topic/176073-redirect-301-help/ Share on other sites More sharing options...
shanejeffery86 Posted September 30, 2009 Author Share Posted September 30, 2009 Did a bit more research into it, but still not working. Options +FollowSymLinks RewriteEngine on RewriteCond %{QUERY_STRING} ^FeatureID=$ [NC] RewriteRule http://(myurl)$ [L,R=301] Quote Link to comment https://forums.phpfreaks.com/topic/176073-redirect-301-help/#findComment-927803 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.