BestChen 发表于 2020-9-15 22:36:48

【已记录】伪静态规则

适用于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即可

谢花郎 发表于 2020-9-16 00:19:27

您好,已记录,感谢反馈。
页: [1]
查看完整版本: 【已记录】伪静态规则