clean permalink从url中删除php扩展

clean permalink从url中删除php扩展,php,regex,.htaccess,mod-rewrite,url-rewriting,Php,Regex,.htaccess,Mod Rewrite,Url Rewriting,我想干净的网址,所以当一个访问者是服务,而不是 重新启动发动机 重写基本/MYEVENTS/ 重写规则^index\.php$-[L] 重写cond%{REQUEST_FILENAME}-F 重写cond%{REQUEST_FILENAME}-D 重写规则/MYEVENTS/index.php[L] 重写规则^([a-z]+)\/?$$1.php[NC] 试试这个 RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond

我想干净的网址,所以当一个访问者是服务,而不是


重新启动发动机
重写基本/MYEVENTS/
重写规则^index\.php$-[L]
重写cond%{REQUEST_FILENAME}-F
重写cond%{REQUEST_FILENAME}-D
重写规则/MYEVENTS/index.php[L]
重写规则^([a-z]+)\/?$$1.php[NC]
试试这个

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php
去伦敦怎么样?
RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php