Search code examples
php.htaccess

Change URL from www.xyz.com/abc.php to www.xyz.com/abc


If my URL is http://www.example.com/abc.php then it should open http://www.example.com/abc

I need to do only for one page not for others.


Solution

  • RewriteEngine On
    RewriteRule ^abc$ abc.php [L]

    you can change ^abc with any name which suites your requirement and this change will apply for only abc.php

    Hope this help