- 论坛徽章:
- 0
|
每回只要一开启 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:- user www-data;
- worker_processes 2;
- error_log /dev/null crit;
- pid /var/run/nginx.pid;
- events {
- worker_connections 3000;
- }
- http {
- autoindex on;
- autoindex_exact_size off;
- autoindex_localtime on;
- include /etc/nginx/mime.types;
- default_type application/octet-stream;
- sendfile on;
- tcp_nopush on;
- tcp_nodelay on;
- keepalive_timeout 10;
- gzip on;
- gzip_min_length 1k;
- gzip_buffers 4 8k;
- gzip_http_version 1.1;
- gzip_comp_level 3;
- 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;
- gzip_disable "MSIE [1-6] \.";
- gzip_vary on;
- output_buffers 4 32k;
- client_max_body_size 20m;
- server {
- listen 80;
- server_name localhost;
- charset utf-8,gb2312;
- access_log /data/web/log/access.log;
- server_name_in_redirect off;
- location / {
- root /data/web/www;
- index index.html index.htm index.php;
- }
- location ~ \.php$ {
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- set $path_info "/";
- set $real_script_name $fastcgi_script_name;
- if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {
- set $real_script_name $1;
- set $path_info $2;
- }
- }
- location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css|ico)$ {
- root /data/web/www;
- access_log off;
- expires 30d;
- }
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /data/web/www;
- }
- fastcgi_param SCRIPT_FILENAME /data/web/www/$real_script_name;
- fastcgi_param path_info $path_info;
- include /etc/nginx/fastcgi_params;
- }
- }
复制代码 |
|