I have a .htaccess in the root of my web folder with the following content:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php
With this intent is that when accessing my website, I appear for example,
www.domainname.com/start
and not
www.nombredeldominio.com/inicio.php
Clarify that I have my website in a hosting that runs in Linux.