View Full Version : Simple mod rewrite with PHP?
MrApples
03-15-2008, 06:47 PM
I can figure out how to do it with Apache, but I recently learned that URL rewriting can be done with PHP as well.
How would I make it so these URL's are on in the same with PHP?
http://www.domain.com/area/location.html
http://www.domain.com/index.php?area=location
Where as area and location are the variables.
MoT3rror
03-15-2008, 09:42 PM
This goes in your .htaccess file
RewriteRule ^area/([^/]*).html$ /index.php?area=$1
MrApples
03-16-2008, 08:16 PM
That's nice of you, thank you, I was looking for a PHP version though. I kind of don't want to turn 'RewriteEngine' on for something small. Unless I'm being stupid?
If I am being stupid, would that work as if both versions were input, the same location would come up, and the url would say the simpler one either way?
Also, would this make area a variable as well?
RewriteRule ^([^/]*)/([^/]*).html$ /index.php?$1=$2
cfitzarl
03-16-2008, 09:04 PM
You could also do:
RewriteRule ^area/(.*).html$ index.php?area=$1
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.