Online Forum To Support Coders With Technical Assistance - Read Write Execute

How to remove php extension from url

Ankit Agrawal
Ankit Agrawal
Published on July 28, 2015 · 1 min read

you can do that by using htaccess file. write below code in your .htaccess file

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^.]+)$ $1.php [NC,L]
Was this article helpful?
Ankit Agrawal

Ankit Agrawal

Author & Senior Engineer at CodeExecute

Writing practical engineering guides, debugging real-world bottlenecks, and creating free tools for developer productivity.

← Previous Article How to call a view without header/footer in cakephp Next Article → How to get current user role in wordpress