thinkPHP 5/thinkPHP 5.1 的apache重写文件
Posted 大雨大雨大雨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thinkPHP 5/thinkPHP 5.1 的apache重写文件相关的知识,希望对你有一定的参考价值。
<IfModule mod_rewrite.c>
Options +FollowSymlinks -Multiviews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?s=$1 [QSA,PT,L]
</IfModule>
以上是关于thinkPHP 5/thinkPHP 5.1 的apache重写文件的主要内容,如果未能解决你的问题,请参考以下文章
[代码审计]ThinkPHP 5.0.x 变量覆盖导致的RCE分析