1
I'm trying to make some user-friendly URLs (not necessarily SE friendly, just human friendly).
Here is what I have in my .htaccess file:
RewriteEngine On
RewriteBase /
ReWriteRule ^contact/$ /modules/liaise [L]
Now when I go to mysite.com/contact/ it takes me to the correct page, except that the URL in my browser address bar still shows mysite.com/modules/liaise, and the link in the menu still also shows mysite.com/modules/liaise
Thanks for any help with this.