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

lnmp 二级目录index.htm无法访问

程序员文章站 2022-06-01 23:49:23
...
二级目录下的静态文件index.htm无法访问

nginx的一个conf片段:

location / {
       root   /usr/share/nginx/html/www.abc.com;
        index  index.php index.htm;
    if (!-f $request_filename){
        set $rule_1 1$rule_1;
    }
    if (!-d $request_filename){
        set $rule_1 2$rule_1;
    }
    if ($rule_1 = "21"){
        rewrite /. /index.php last;
    }

    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    location ~ \.php$ {
        root   /usr/share/nginx/html/www.abc.com;
        fastcgi_pass   unix:/var/run/php-fpm.socket;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html/www.abc.com$fastcgi_script_name;
        include        fastcgi_params;
    }

回复内容:

二级目录下的静态文件index.htm无法访问

nginx的一个conf片段:

location / {
       root   /usr/share/nginx/html/www.abc.com;
        index  index.php index.htm;
    if (!-f $request_filename){
        set $rule_1 1$rule_1;
    }
    if (!-d $request_filename){
        set $rule_1 2$rule_1;
    }
    if ($rule_1 = "21"){
        rewrite /. /index.php last;
    }

    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    location ~ \.php$ {
        root   /usr/share/nginx/html/www.abc.com;
        fastcgi_pass   unix:/var/run/php-fpm.socket;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /usr/share/nginx/html/www.abc.com$fastcgi_script_name;
        include        fastcgi_params;
    }
相关标签: php nginx