目前网站用的是discuzX3.0
我希望把论坛的页面 http://www.XXX.com/forum.php
定向到域名:http://BBS.XXX.com
然后把其它的论坛页面:http://www.XXX.com/forum.php?mod=viewthread&tid=***
定向到:http://bbs.XXX.com/forum.php?mod=viewthread&tid=***
我试着按照
LNMP下Nginx如何设置域名301重定向http://lnmp.org/faq/lnmp-nginx-301-rewrite.html
这篇文章修改网站的conf文件
添加了这段
server {
server_name www.XXX.com/forum.php;
return 301 $scheme://bbs.XXX.com$request_uri;
}
重启nginx 提示:
estarting nginx daemon: nginxnginx: [warn] server name "www.XXX.com/forum.php"
has suspicious symbols in /usr/local/nginx/conf/vhost/www.XXX.com.conf:32
希望有人能说明一下怎么做单页面或者批量页面的重定向 |