katlis Posted March 1, 2009 Share Posted March 1, 2009 I can't wrap my head around this one... RewriteEngine on RewriteCond %{HTTP_HOST} ^domain.com$ [NC] RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301] RewriteRule ^tutorial/([A-Za-z0-9-]+)/?$ /tutorial.php?id=$1 [NC] Going to http://domain.com/tutorial/blah will redirect to http://www.domain.com/tutorial.php?id=blah I want it to go to http://www.domain.com/tutorial/blah. What's goin on here? Quote Link to comment Share on other sites More sharing options...
corbin Posted March 1, 2009 Share Posted March 1, 2009 Try changing RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301] To RewriteRule ^(.*)$ http://www.domain.com/$1 [R=301,L] Quote Link to comment Share on other sites More sharing options...
katlis Posted March 4, 2009 Author Share Posted March 4, 2009 Thanks, that worked! What does the L do? Quote Link to comment Share on other sites More sharing options...
corbin Posted March 4, 2009 Share Posted March 4, 2009 Makes the rule with the [L] flag the last rule that will be ran. So, in this case, it stops the second rewrite from happening if the first one happens. Quote Link to comment 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.