适用于XenForo论坛程序的伪静态规则,希望下个版本宝塔可以加入上去
- location /xf/ {
- try_files $uri $uri/ /xf/index.php?$uri&$args;
- index index.php index.html;
- }
- location /xf/install/data/ {
- internal;
- }
- location /xf/install/templates/ {
- internal;
- }
- location /xf/internal_data/ {
- internal;
- }
- location /xf/library/ { #legacy
- internal;
- }
- location /xf/src/ {
- internal;
- }
- location ~ \.php$ {
- try_files $uri =404;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
复制代码
/xf/为二级目录如果没有直接去掉/xf即可
|
|