am looking to change the URL how they are shown in the browsers to help with seo..
as an example I would like to change From
www.mysite.com/About/index.php?pageId=2
to
www.mysite.com/About
got some neat fancy code to rewrite these in the htccess file
Thanks
Wayne
there's lots of tutorials on this, what have you tried so far?
RewriteEngine on
RewriteCond %{THE_REQUEST} [A-Z]+\ /([/]+/)index.php\?pageId=6([?#][\ ]*)?\ HTTP/ RewriteRule (([/]+/)*)index.php\?pageId=6$ http://mysite.com/Contact/$1 [R=301,L]