Forum Moderators: phranque
RewriteEngine On
RewriteRule ^culture/(.*)/(.*) www.example.com/culture/article.php?content=$1&type=$2
and nothing happened.
What I'm trying to do is have
www.example.com/culture/article.php?content=other&type=HollowVows.html
become
www.example.com/culture/other/HollowVows.html
which is
www.example.com/culture/$2/$1
I've never done this so any help is appreciated.
RewriteEngine on
RewriteRule ^culture/([^/]+)/(.*)/?$ /culture/article.php?content=$1&type=$2 [L]
See the mod_rewrite and regular-expressions references cited in our forum charter.
Jim