Thursday, September 28, 2023
Homehow to remove php html extensions from website
Array

how to remove php html extensions from website

For remove .php 

Add this code on your .htaccess file

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$ $1.php [NC,L]

For Remove .html
Add this code on your .htaccess file
RewriteRule ^([^\.]+)$ $1.html [NC,L]
 
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments