女神引技术狼
一开始没装面板。直接装的alidata...
肠子都悔青了。。现在总不可能备案再装面板吧。。(╥﹏╥)
301在网上查了好多一直解决不阿。。
是不是在网站配置.conf文件修改301??
我就只是简单的想把 不带www的跳转到www而已!!!!!
配置文件如下。。在结尾添加呢还是在中间添加呢?
server {
listen 80;
server_name www.aaa.cn aaa.cn;
index index.html index.htm index.php;
root /alidata/www/aaa;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
#伪静态规则
include /alidata/server/nginx/conf/rewrite/default.conf;
access_log /alidata/log/nginx/access/default.log;
}
有贴子说要添加下面的代码。但是我添加后重启ng 提示错误
server
{
listen 80;
server_name abc.com;
access_log off;
rewrite ^/(.*)$ http://www.abc.com/$1 permanent;
}
server
{
listen 80;
server_name www.abc.com;
index index.html index.htm index.php;
root /home/user/abc.com;
include location.conf;
include zencart.conf;
}
脑壳晕阿。。这玩意倒底怎么搞???
求助攻!!!!
-------------------------
server {
把网址替换成你自己的试试看
server_name www.gojiahe.com gojiahe.com ;
if ($host != 'www.gojiahe.com' ) {
rewrite ^/(.*)$ http://www.gojiahe.com/$1 permanent;
}
-------------------------
对了。
放顶部
-------------------------
-------------------------
-------------------------
server {
server_name www.wehudong.cn wehudong.cn;
if ($host != 'www.wehudong.cn' ) {
rewrite ^/(.*)$ http://www.wehudong.cn/$1 permanent;
}
server {
listen 80;
server_name www.wehudong.cn wehudong.cn;
index index.html index.htm index.php;
root /alidata/www/wehudong;
location ~ .*\.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*\.(js|css)?$
{
expires 1h;
}
#伪静态规则
include /alidata/server/nginx/conf/rewrite/default.conf;
access_log /alidata/log/nginx/access/wehudong.log;
}
-------------------------
[root@AY131129145555643a3aZ ~]# /alidata/server/nginx/sbin/nginx -s reload
nginx: [emerg] "server" directive is not allowed here in /alidata/server/nginx/conf/vhosts/wehudong.conf:7
[root@AY131129145555643a3aZ ~]#
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。