Jump to content

Easy Mod Rewrite Help


Bendude14

Recommended Posts

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

Link to comment
https://forums.phpfreaks.com/topic/126718-easy-mod-rewrite-help/
Share on other sites

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&quote=$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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.