Nginx 下Thinkphp5伪静态
Posted 似
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx 下Thinkphp5伪静态相关的知识,希望对你有一定的参考价值。
server {
listen 80;
server_name all.bjed.com;
root "F:wwwasdata";
location / {
index index.html index.htm index.php;
#autoindex on;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}
}
以上是关于Nginx 下Thinkphp5伪静态的主要内容,如果未能解决你的问题,请参考以下文章
thinkPHP5配置nginx环境无法打开(require(): open_basedir restriction in effect. File(/mnt/hgfs/root/tp5/thinkp
Nginx 重定向 伪静态 rewrite index.php