remove php extension in a URL
2K views
Jan 12, 2023
How to remove .php extension in a domain URL Hide code language extension in a URL using .htacces in CPANEL The full code is below RewriteEngine on RewriteCond %{THE_REQUEST} /([^.]+)\.php [NC] RewriteRule ^ /%1 [NC,L,R] RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^ %{REQUEST_URI}.php [NC,L]