Good morning ... I have been researching this topic but I can not find anything to help me, and I want to avoid that the extensions of my file are shown in the URL (eg contacto.php) What should my htaccess file take to be shown /?
This is the code I have:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ contacto.php [QSA,L]
</IfModule>