Web Hosting Talk







View Full Version : Mod_Rewrite Confusion


WorldInSite
12-27-2004, 03:11 PM
I've been playing around with mod_rewrite, but got totally lost. I would like to change:

mysite.com/index.php?section=var1&page=var2

into

mysite.com/var1/var2


I've been playing around with a few rules, but alas they don't seem to work. Any tips?

assistanz247
12-28-2004, 09:29 AM
Surf ::

http://mod-rewrite.com/forum/

;)

_goliath2
12-28-2004, 10:45 AM
My be will work:

RewriteRule ^/(.*)/(.*)$ /index.php?section=$1&page=$2

WorldInSite
12-28-2004, 12:36 PM
Thanks for the link, tons of info there.


And your code sample just happened to work with a little bit of playing... :)