htaccess – remove .php extension from url – Apache
I tried a lot of code to remove .php from url for example - ht.abuena.net/presto.php -> ht.abuena.net/presto and vice versa - internally RewriteEngine ON RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*)$ $1.php [NC,L] nothing works - the url stays unchanged page is…