Hi all,
I am using an apache web server, and this is the raw url:
http://localhost/mysite/index.php?view=contact
how do I convert that to:
http://localhost/mysite/contact/
My current .htaccess is saved in http://localhost/.htaccess
, and reads as:
RewriteEngine On
RewriteRule ^mysite/(.*)/$ /mbs/index.php?view=$1 [L]
and I get a 500 internal server error?
Thanks for the help :)