Heim > Backend-Entwicklung > PHP-Tutorial > nginx 部署thinkphp 做的货色, 配置 Pathinfo 模式,终于配好了

nginx 部署thinkphp 做的货色, 配置 Pathinfo 模式,终于配好了

WBOY
Freigeben: 2016-06-13 12:25:48
Original
738 Leute haben es durchsucht

nginx 部署thinkphp 做的东西, 配置 Pathinfo 模式,终于配好了

  用thinkphp做了一个网站,部署到ubuntu上的时候需要,服务器用的是nginx,本身不支持pathinfo模式,需要修改配置文件,使其能够用pathinfo。

  我用的是虚拟主机的方式。之前配置了好久,总是出现各种各样的问题,最后实在不行,直接用rewrite模式,配置还比较简单。后来不知道改了什么,rewrite也不能用了,这回打算把

pathinfo 配出来, 所以查了各种资料,一点一点的改。终于改成了。

  发现很多网上的东西,其实和自己用的经常会有一点差别,需要根据自己的东西进行修改才行

<span style="color: #000000;">server {        listen   </span>8082<span style="color: #000000;">;        root </span>/usr/share/nginx/www/<span style="color: #000000;">ssdf;        index index.php index.html index.htm;        error_page </span>404 /404<span style="color: #000000;">.html;                            //404和后面的“/” 需要有一个空格隔开        </span><span style="color: #008000;">#</span><span style="color: #008000;"> pass the PHP scripts to FastCGI server listening on the php-fpm socket</span>        location /<span style="color: #000000;"> {                                         //这里是rewrite规则,可以单独使用,thinkphp中模式也要改成rewrite,         </span><span style="color: #0000ff;">if</span> (!-e <span style="color: #800080;">$request_filename</span><span style="color: #000000;">) {              //之前配置好了,不知道后来改了那不能用了。           rewrite  ^</span>/(.*)$  /index.php/<span style="color: #800080;">$1</span><span style="color: #000000;">   last;           </span><span style="color: #0000ff;">break</span><span style="color: #000000;">;            }        }        location ~ ^(.</span>+\.php)(.*<span style="color: #000000;">) {</span><span style="color: #008000;">#</span><span style="color: #008000;">               try_files $uri =404;         这句只是尝试注释掉了,后来也没再尝试不注释能不能用</span><span style="color: #008000;">#</span><span style="color: #008000;">               fastcgi_pass 127.0.0.1:9000;       这里一开始写的词句,后来修改成default文件中的下面那一句,这句不知道这两句怎么用</span>                fastcgi_pass unix:/run/php5-<span style="color: #000000;">fpm.sock;                fastcgi_index index.php;</span><span style="color: #008000;">#</span><span style="color: #008000;">               include fastcgi_params;            这里面fastcgi_params和 fcgi.conf内容是相同的,网上两种命名都有人用</span><span style="color: #000000;">                include fcgi.conf;                set </span><span style="color: #800080;">$real_script_name</span> <span style="color: #800080;">$fastcgi_script_name</span><span style="color: #000000;">;                set </span><span style="color: #800080;">$path_info</span> <span style="color: #800000;">""</span><span style="color: #000000;">;                </span><span style="color: #0000ff;">if</span> (<span style="color: #800080;">$fastcgi_script_name</span> ~ <span style="color: #800000;">"</span><span style="color: #800000;">^(.+?\.php)(/.+)$</span><span style="color: #800000;">"</span><span style="color: #000000;">){     //if语句后面一定要有个空格,要和别的区分开,属于语法规定                        set </span><span style="color: #800080;">$real_script_name</span> <span style="color: #800080;">$1</span><span style="color: #000000;">;                        set </span><span style="color: #800080;">$path_info</span> <span style="color: #800080;">$2</span><span style="color: #000000;">;                }                fastcgi_param SCRIPT_FILENAME </span><span style="color: #800080;">$document_root$real_script_name</span><span style="color: #000000;">;                fastcgi_param SCRIPT_NAME </span><span style="color: #800080;">$real_script_name</span><span style="color: #000000;">;                fastcgi_param   PATH_INFO </span><span style="color: #800080;">$path_info</span><span style="color: #000000;">;        }}</span>
Nach dem Login kopieren

 

1楼三百里江山
先收藏着,以后有用。多谢你的贡献
Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage