Heim >Backend-Entwicklung >PHP-Tutorial >lnmp一键安装环境中nginx开启pathinfo,lnmpnginx_PHP教程

lnmp一键安装环境中nginx开启pathinfo,lnmpnginx_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:12:20770Durchsuche

lnmp一键安装环境中nginx开启pathinfo,lnmpnginx

问题及原理可参考:http://www.laruence.com/2009/11/13/1138.html

如果是用lnmp脚本一键安装的开发环境,可以通过如下方式开户pathinfo:

1、注释nginx.conf中的try_files(因为跟pathinfo.conf中的重复了),开启pathinfo.conf配置:

<span>1</span> location ~ [^/]\.php(/|<span>$)
</span><span>2</span> <span>{
</span><span>3</span>     # comment try_files $uri =<span>404</span><span>; to enable pathinfo
</span><span>4</span>     #try_files $uri =<span>404</span><span>;
</span><span>5</span>     fastcgi_pass  unix:/tmp/php-<span>cgi.sock;
</span><span>6</span> <span>    fastcgi_index index.php;
</span><span>7</span> <span>    include fastcgi.conf;
</span><span>8</span> <span>    include pathinfo.conf;
</span><span>9</span> }

即注释掉第4行,打开第8行。

2、重启nginx服务:

nginx -s reload

 

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/923714.htmlTechArticlelnmp一键安装环境中nginx开启pathinfo,lnmpnginx 问题及原理可参考:http://www.laruence.com/2009/11/13/1138.html 如果是用lnmp脚本一键安装的开发环境,可...
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