>백엔드 개발 >PHP 튜토리얼 >nginx如何配置子目录的fastcgi_pass?

nginx如何配置子目录的fastcgi_pass?

WBOY
WBOY원래의
2016-06-06 20:40:071478검색

<code>location /wordpress {
        alias          /usr/local/nginx-1.6.2/html/wordpress;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx-1.6.2/html/wordpress$fastcgi_script_name;
        include        fastcgi_params;
    }
</code>

发现SCRIPT_FILENAME会包含,/wordpress,怎么才能去掉这个子目录?只传递后面的部分?

回复内容:

<code>location /wordpress {
        alias          /usr/local/nginx-1.6.2/html/wordpress;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /usr/local/nginx-1.6.2/html/wordpress$fastcgi_script_name;
        include        fastcgi_params;
    }
</code>

发现SCRIPT_FILENAME会包含,/wordpress,怎么才能去掉这个子目录?只传递后面的部分?

ss --unix --all | grep php
输出类似:
u_str LISTEN 0 128 /run/php-fpm/php-fpm.sock 30653 * 0
我在 nginx.conf 中的配置
fastcgi_pass unix:/run/php-fpm/php-fpm.sock

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.