How to remove .php extension with .htaccess
0 8433
If you want to remove .php extension from the website URL's Link, then here's the code you have to write in your .htaccess file.
.php extension is removed to make URL user and SEO friendly.
It is recommended to don't disclose the technology name in the URL (Uniform Resource Locator).
RewriteEngine On RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^\ ]+)\.php RewriteRule ^/?(.*)\.php$ /$1 [L,R=301] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_URI} !^/[0-9]+\..+\.cpaneldcv$ RewriteCond %{REQUEST_URI} !^/[A-F0-9]{32}\.txt(?:\ Comodo\ DCV)?$ RewriteCond %{REQUEST_URI} !^/\.well-known/acme-challenge/[0-9a-zA-Z_-]+$ RewriteRule ^([^\.]+)$ $1.php [NC,L] #for remove html extension RewriteRule ^([^\.]+)$ $1.html [NC,L]
When you will use this code you should remove .php from all pages which are used to link the PHP files, otherwise, it will show the error.
What is a .htaccess file?
A .htaccess file is a simple ASCII file that's created with a text editor like Notepad.
It changes configuration according to pre-directory basis.
.htaccess topics:
- How can I redirect URLs with .htaccess
- deny direct access to folder in website with .htaccess
- How to remove index.php from URL with .htaccess
Share:
Comments
Waiting for your comments