- 注册
- 10 16, 2023
- 消息
- 1,756
- G
- 10,050 G
- 中国
- 河南
- 郑州市
- 联通 网友
- 主题 作者
- #1
XenForo Nginx 伪静态规则
NGINX:
location / {
try_files $uri $uri/ /index.php?$uri&$args;
index index.php index.html;
}
location /install/data/ {
internal;
}
location /install/templates/ {
internal;
}
location /internal_data/ {
internal;
}
location /library/ { #legacy
internal;
}
location /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;
}