Hello friends many times we need to remove the extensions from our URL for better SEO. So in this tutorial we will tell you how you can Remove PHP Extension from URL using .htaccess file. Use the below code in your .htaccess file only RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^(.*)$ $1.php [NC,L] In this above code…