详解:http://document.thinkphp.cn/manual_3_2.html#url_rewrite
阿里云系统配置thingkphp 3.2
1.该配置
ftp位置:/etc/nginx/conf.d/default.conf
增加代码
(更目录下安装)
location / { // …..省略部分代码 if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
(二级目录安装)
location /youdomain/ { if (!-e $request_filename){ rewrite ^/youdomain/(.*)$ /youdomain/index.php?s=$1 last; } }
时间: 2024-11-05 19:30:44