欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

如何在(MAMP PRO for mac)中配置nginx上的伪静态规则?try_file的值?tp5之URL重写隐藏应用的入口文件index.php?

程序员文章站 2024-03-26 13:50:35
...

问题:

其实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

如何在(MAMP PRO for mac)中配置nginx上的伪静态规则?try_file的值?tp5之URL重写隐藏应用的入口文件index.php?

这是官方提供的nginx 上 URL重写隐藏应用的入口文件index.php的规则:

location /youdomain/ {
    if (!-e $request_filename){
        rewrite  ^/youdomain/(.*)$  /youdomain/index.php?s=/$1  last;
    }
}

这是我的nginx 上 URL重写隐藏应用的入口文件index.php的规则:

location /youdomain/ {
    if (!-e $request_filename){
        rewrite  ^/(.*)$  /index.php?s=/$1  last;
    }
}