Remove .php extension with .htaccess

前端 未结 15 2166
一生所求
一生所求 2020-11-21 04:32

Yes, I\'ve read the Apache manual and searched here. For some reason I simply cannot get this to work. The closest I\'ve come is having it remove the extension, but it point

15条回答
  •  感动是毒
    2020-11-21 04:57

    If your url in PHP like http://yourdomain.com/demo.php than comes like http://yourdomain.com/demo

    This is all you need:

    create file .htaccess

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

提交回复
热议问题