Hey guys, do you know how to change the structure of the URL using .htaccess. For exemple :
- www.mysite.com/index.php to www.mysite.com/index/
- www.mysite.com/contact.php to www.mysite.com/contact/
- www.mysite.com/about.php to www.mysite.com/about/
.htaccess problem
Re: .htaccess problem
RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^([^\.]+)$ $1.php [NC,L]