问题:
其实3个问题类似
1.MAMP PRO for mac中如何配置nginx中的try_file的值?
2.tp5.1在MAMP PRO中配置nginx的路由忽略index.php的重定向配置?
3.如何在MAMP PRO中配置nginx上的伪静态规则?
环境:
系统:mac mini v10.11.5
MAMP PRO for mac : 4.4.1 (9605)
tp版本:TP5.1.39
index.php的规则:
location /youdomain/ {
if (!-e $request_filename){
rewrite ^/youdomain/(.*)$ /youdomain/index.php?s=/$1 last;
}
}
index.php的规则:
location /youdomain/ {
if (!-e $request_filename){
rewrite ^/(.*)$ /index.php?s=/$1 last;
}
}