最近使用thinkphp6获取参数会附加上链接路径,造成插入数据报错
<IfModule mod_rewrite.c>Options +FollowSymlinks -Multiviews RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
</IfModule>
上面是thinkphp手册提供的伪静态规则 发现就知道原因了 ,
于是想到另外一种伪静态解决规则
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
</IfModule>
相关文章