Remove .php from URL

后端 未结 11 943
生来不讨喜
生来不讨喜 2020-12-15 22:17

Ubuntu 14.04LTS 32bit

LAMP

I know it\'s an old question but..

I need it to remove .php anywhere it finds it from the visible url. It needs to work wi

11条回答
  •  萌比男神i
    2020-12-15 22:23

    RewriteEngine on //replacement launch
    RewriteCond %{REQUEST_FILENAME} !-d //If the requested object is not a folder
    RewriteCond %{REQUEST_FILENAME}\.php -f //If the requested object to append the extension php - file
    RewriteRule ^(.*)$ $1.php //make the change from concatenating .php
    

提交回复
热议问题