只允许特定名字php执行的rewrite规则

apache 的这样写

RewriteEngine On
RewriteRule ^(?!index\.php|其他\.php)(.*)\.php$   index.php [L]

nginx的这样写

rewrite ^/(?!index\.php|其他\.php)(.*)\.php$  index.php last;

发表评论

邮箱地址不会被公开。 必填项已用*标注