Premise: I hate htaccess
I have to redirect or rewrite an URL: I want that this URL
http://www.example.com/en.php
become
http://www.example.com/en/
For example: clicking a link like <a href="en">English</a>
I want that it navigates to the page en.php
but showing the url http://www.example.com/en/
I've tried this, but doesn't work
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteRule ^/en/ http://www.example.com/en.php
</IfModule>