崩溃了,ubuntu + nginx + discuz 7.2 URL静态化 出错

发布于 2022-09-02 15:28:18 字数 4490 浏览 9 评论 3

每回只要一开启 URL静态化 ,论坛就不能正常访问。
网上有不少说伪静态的问题,都搞了几天了。
主要是不知道正确的是什么样的,现在搞得自己团团转,但使不上劲。
请朋友们指点一二,多谢。

这个坛子上找着以前的贴,感觉跟自己的需求满接近的:
Nginx 在 Discuz 下的 Rewrite 偽靜態配置
http://www.hostloc.com/viewthrea ... mp;highlight=discuz

官方帮助文档:
Discuz! 7.0.0 URL 静态化的使用
http://faq.comsenz.com/viewnews-790

我的机器是独立主机,装的 ubuntu10.4+ nginx 0.7.65 + Didcuz 7.2
# /usr/sbin/nginx -V
nginx version: nginx/0.7.65
TLS SNI support enabled
configure arguments: --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx.pid --lock-path=/var/lock/nginx.lock --http-log-path=/var/log/nginx/access.log --http-client-body-temp-path=/var/lib/nginx/body --http-proxy-temp-path=/var/lib/nginx/proxy --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --with-debug --with-http_stub_status_module --with-http_flv_module --with-http_ssl_module --with-http_dav_module --with-http_gzip_static_module --with-http_realip_module --with-mail --with-mail_ssl_module --with-ipv6 --add-module=/build/buildd/nginx-0.7.65/modules/nginx-upstream-fair

系统上面的目录:
/data/web/www         是帝国下载系统。
/data/web/www/bbs  是出错的Discuz 7.2 .

这是我的niginx.conf:

  1. user www-data;
  2. worker_processes 2;
  3. error_log /dev/null crit;
  4. pid /var/run/nginx.pid;
  5. events {
  6.   worker_connections 3000;
  7. }
  8. http {
  9.   autoindex on;
  10.   autoindex_exact_size off;
  11.   autoindex_localtime on;
  12.   include /etc/nginx/mime.types;
  13.   default_type application/octet-stream;
  14.   sendfile on;
  15.   tcp_nopush on;
  16.   tcp_nodelay on;
  17.   keepalive_timeout 10;
  18.   gzip on;
  19.   gzip_min_length 1k;
  20.   gzip_buffers 4 8k;
  21.   gzip_http_version 1.1;
  22.   gzip_comp_level 3;
  23.   gzip_types text/css text/xml text/plain application/x-javascript application/xml application/pdf application/x-perl application/x-tcl application/msword application/rtf application/vnd.ms-excel application/vnd.ms-powerpoint application/vnd.wap.xhtml+xml image/x-ms-bmp;
  24.   gzip_disable "MSIE [1-6] .";
  25.   gzip_vary on;
  26.   output_buffers 4 32k;
  27.   client_max_body_size 20m;
  28.   server {
  29.     listen 80;
  30.     server_name localhost;
  31.     charset utf-8,gb2312;
  32.     access_log /data/web/log/access.log;
  33.     server_name_in_redirect off;
  34.     location / {
  35.       root /data/web/www;
  36.       index index.html index.htm index.php;
  37.     }
  38.     location ~ .php$ {
  39.     fastcgi_pass 127.0.0.1:9000;
  40.     fastcgi_index index.php;
  41.     set $path_info "/";
  42.     set $real_script_name $fastcgi_script_name;
  43.     if ($fastcgi_script_name ~ "^(.+?.php)(/.+)$") {
  44.         set $real_script_name $1;
  45.         set $path_info $2;
  46.       }
  47.     }
  48.     location ~ .*.(gif|jpg|jpeg|png|bmp|swf|js|css|ico)$ {
  49.       root /data/web/www;
  50.       access_log off;
  51.       expires 30d;
  52.     }
  53.     error_page 500 502 503 504 /50x.html;
  54.     location = /50x.html {
  55.       root /data/web/www;
  56.     }
  57.     fastcgi_param SCRIPT_FILENAME /data/web/www/$real_script_name;
  58.     fastcgi_param path_info $path_info;
  59.     include /etc/nginx/fastcgi_params;
  60.   }
  61. }

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

飘落散花 2022-09-10 23:29:36

太悲剧了,整了几天,原来只是路径的问题。
我的 rewrite 句式里加上 /bbs 就行了。

  1. rewrite ^/bbs/archiver/((fid|tid)-[w-]+.html)$ /bbs/archiver/index.php?$1 last;
  2. rewrite ^/bbs/forum-([0-9]+)-([0-9]+).html$ /bbs/forumdisplay.php?fid=$1&page=$2 last;
  3. rewrite ^/bbs/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ /bbs/viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
  4. rewrite ^/bbs/space-(username|uid)-(.+).html$ /bbs/space.php?$1=$2 last;
  5. rewrite ^/bbs/tag-(.+).html$ /bbs/tag.php?name=$1 last;
  6. break;

复制代码最后,对于没有配置过或没配成功过的朋友可能有个疑问。
配好nginx.conf 后是否要勾选 URL静态化 下的选项?
答案: 必须打勾的!

一花一树开 2022-09-07 20:05:58

这个伪静态的配置是否应该写成:

  1. user www-data;
  2. worker_processes 2;
  3. error_log /dev/null crit;
  4. pid /var/run/nginx.pid;
  5. events {
  6.   worker_connections 3000;
  7. }
  8. http {
  9.   autoindex on;
  10.   autoindex_exact_size off;
  11.   autoindex_localtime on;
  12.   include /etc/nginx/mime.types;
  13.   default_type application/octet-stream;
  14.   sendfile on;
  15.   tcp_nopush on;
  16.   tcp_nodelay on;
  17.   keepalive_timeout 10;
  18.   gzip on;
  19.   gzip_min_length 1k;
  20.   gzip_buffers 4 8k;
  21.   gzip_http_version 1.1;
  22.   gzip_comp_level 3;
  23.   gzip_types text/css text/xml text/plain application/x-javascript application/xml application/pdf application/x-perl application/x-tcl application/msword application/rtf application/vnd.ms-excel application/vnd.ms-powerpoint application/vnd.wap.xhtml+xml image/x-ms-bmp;
  24.   gzip_disable "MSIE [1-6] .";
  25.   gzip_vary on;
  26.   output_buffers 4 32k;
  27.   client_max_body_size 20m;
  28.   server {
  29.     listen 80;
  30.     server_name localhost;
  31.     charset utf-8,gb2312;
  32.     access_log /data/web/log/access.log;
  33.     server_name_in_redirect off;
  34.     location / {
  35.       root /data/web/www;
  36.       index index.html index.htm index.php;
  37. rewrite ^/archiver/((fid|tid)-[w-]+.html)$ /archiver/index.php?$1 last;
  38. rewrite ^/forum-([0-9]+)-([0-9]+).html$ /forumdisplay.php?fid=$1&page=$2 last;
  39. rewrite ^/thread-([0-9]+)-([0-9]+)-([0-9]+).html$ /viewthread.php?tid=$1&extra=page%3D$3&page=$2 last;
  40. rewrite ^/space-(username|uid)-(.+).html$ /space.php?$1=$2 last;
  41. rewrite ^/tag-(.+).html$ /tag.php?name=$1 last;
  42. break;
  43.     }
  44.     location ~ .php$ {
  45.     fastcgi_pass 127.0.0.1:9000;
  46.     fastcgi_index index.php;
  47.     set $path_info "/";
  48.     set $real_script_name $fastcgi_script_name;
  49.     if ($fastcgi_script_name ~ "^(.+?.php)(/.+)$") {
  50.         set $real_script_name $1;
  51.         set $path_info $2;
  52.       }
  53.     }
  54.     location ~ .*.(gif|jpg|jpeg|png|bmp|swf|js|css|ico)$ {
  55.       root /data/web/www;
  56.       access_log off;
  57.       expires 30d;
  58.     }
  59.     error_page 500 502 503 504 /50x.html;
  60.     location = /50x.html {
  61.       root /data/web/www;
  62.     }
  63.     fastcgi_param SCRIPT_FILENAME /data/web/www/$real_script_name;
  64.     fastcgi_param path_info $path_info;
  65.     include /etc/nginx/fastcgi_params;
  66.   }
  67. }

复制代码

赠意 2022-09-07 11:07:57

本帖最后由 061107 于 2010-10-25 15:20 编辑

php、mysql等的配置是按这个贴走的:
ubuntu server 10.04+nginx+mysql+php+eaccelerator[2010/10/06]
http://forum.ubuntu.org.cn/viewtopic.php?t=241301

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文