以下內容属于 ‘Xenforo’ 便签:

Nginx下Xenforo伪静态代码 去掉index.php

折腾了下xenforo,nginx下,涉及到伪静态,需要去掉“index.php?”,由于xenforo在国内这方面的知识并不多,去官方看了下friendurl,使用里面的代码有点小错误提示502错误。 官方的代码 123456789101112131415161718location /xf/ {     try_files $uri $uri/ /xf/index.php?$uri&$args;     index index.php index.html; } location /xf/internal_data/ {     internal; } location /xf/library/ {        internal; } location ~ \.php$ {     try_files $uri =404;     fastcgi_pass    127.0.0.1:9000;     fastcgi_param   SCRIPT_FILENAME $document_root$fastcgi_script_name;     include […] (more...)