Forum Moderators: phranque
Can somebody help me to rewrite an URL?
I starting today to use regular expressions, but I have some problems.
I need to rewritte url as this:
- www.example.com/index.php?cnt=home
- www.example.com/index.php?cnt=services
to this:
- www.example.com/home
- www.example.com/services
Thank you!
̉scar
(sorry, my english is very elementary)
a solution for your quest can be but not must:
RewriteRule ^/index.php?cnt=(.*)$ /$1 [L] there is no info wether you want to have this transparent or as a (static/temporary?) redirect nor what's intended.