Bendude14 Posted October 2, 2008 Share Posted October 2, 2008 Im sure this will be easy to someone with more experience in mod rewrite than me. here is what i already have RewriteRule ^car-(.+)/?$ index.php?car=$1 [NC,L] # Handle requests This shows http://www.domain.com/car-getz or what ever car is entered. but what i want to do is get rid of the car- so its just http://www.domain.com/getz i have already tried these with no luck RewriteRule ^(.+)/?$ index.php?car=$1 [NC,L] # Handle requests RewriteRule ^/?$ index.php?car=$1 [NC,L] # Handle requests Quote Link to comment Share on other sites More sharing options...
Bendude14 Posted October 2, 2008 Author Share Posted October 2, 2008 ok solved it Here is the answer to anyone having similar problems RewriteRule ^([A-Za-z0-9-]+)/?$ index.php?car=$1 [NC,L] # Handle requests Quote Link to comment Share on other sites More sharing options...
Bendude14 Posted October 2, 2008 Author Share Posted October 2, 2008 ok im back again i am now trying to add another query string but i just can not access it from php here is what i have RewriteRule ^([A-Za-z0-9-]+)/?$ index.php?car=$1"e=$2 [NC,L] # Handle requests i know that $_GET['quote'] is set but i can not get the contents out of it because i don't know where to define them in the rule? any help would be appreciated thanks 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.