Heim >Backend-Entwicklung >PHP-Tutorial >lnmp 二级目录index.htm无法访问

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

WBOY
WBOYOriginal
2016-06-06 20:49:59978Durchsuche

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

nginx的一个conf片段:

<code>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;
    }
</code>

回复内容:

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

nginx的一个conf片段:

<code>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;
    }
</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn