1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

美化 Friendly URLs 伪静态

XenForo 伪静态规则(Apache、IIS 7、Nginx、Lighttpd)

  1. admin

    admin 管理员 管理成员

    注册:
    2011-11-01
    帖子:
    3,671
    赞:
    2,425
    admin 发布了新资源:

    Friendly URLs 伪静态(版本 1.1.4)- XenForo 伪静态规则(Apache、IIS 7、Nginx、Lighttpd)

    查看资源详情...
     
  2. igijedi

    igijedi VIP会员

    注册:
    2013-01-20
    帖子:
    41
    赞:
    7
    IIS6没救了吗...
     
  3. lkddi

    lkddi VIP会员

    注册:
    2013-10-21
    帖子:
    39
    赞:
    2
    Nginx 下不行呀,去掉路径也是不行,谁有试过的?
     
  4. zeppe

    zeppe XF认证会员

    注册:
    2013-09-28
    帖子:
    11
    赞:
    2
    Nginx在根目录安装的规则应该是:
    location / {
    try_files $uri $uri/ /index.php?$uri&$args;
    }

    location ~ /(internal_data|library) {
    internal;
    }
     
    已获得 admin 的点赞。
  5. teddyvgt

    teddyvgt VIP会员

    注册:
    2015-09-30
    帖子:
    39
    赞:
    2
    location / {
    try_files $uri $uri/ /index.php?$uri&$args;
    }

    location ~ /(internal_data|library) {
    internal;
    }
    location /xf/library/ { -----------这里要去掉/XF吗
    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;
    }

    nginx伪静态根目录是这样的吗
     
正在加载...