apache运行laravel框架开发的系统。
提交post或者其他请求,会在request中存在s参数,导致数据库报错。
apache的.htaccess文件中的伪静态有?=参数导致
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>
替换public目录下的.htaccess文件内容如上。