主页 > 编程资料 > PHP >
发布时间:2017-09-12 作者:apizl 阅读:242次
nginx:
rewrite '^/index.php(.*)$' /index.php$1  last;

Apache:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>


文章由爱资料原创本文地址:https://www.apizl.com/archives/view-133890-1.html,转载请以链接形式标明本文地址!
关键字词: