yang2610278 发表于 2017-3-30 16:46:35

进来看看,简单问题,我不会。!帮帮忙

怎么把用www.xxx.com 302.跳转到www.xxx.com/index.html   怎么写。和判断。。!

licess 发表于 2017-3-30 19:33:54

rewrite ^/(.*)$ https://lnmp.org redirect;

yang2610278 发表于 2017-3-31 02:28:02

回复 2# 的帖子

需要把默认index.html 文档去掉吗?

yang2610278 发表于 2017-3-31 03:04:52

回复 2# 的帖子

我如果要把。/w/index.html 重写到根目录    是不是这样

location /w {
rewrite/w/(.*)$/$1 last;
rewrite/(.*)$ https://lnmp.org redirect;
}
在浏览器是不是这样   https://lnmp.org/index.html

licess 发表于 2017-3-31 10:05:09

location /w/ {
        rewrite/(.*)$ https://lnmp.org/index.html redirect;
}

index.html 看你意愿了,如果目录下只有这一个index文件加不加都行

yang2610278 发表于 2017-3-31 16:35:16

回复 5# 的帖子

我试试。。感谢军哥!!!!

yang2610278 发表于 2017-3-31 17:25:27

回复 5# 的帖子

server
    {
      listen 80;
      #listen [::]:80;
      server_name www.1.com;
      index index.html index.htm index.php default.html default.htm default.ph
p;
                root/home/wwwroot/2;



                #include 1.com.conf;
            error_page   404   /max404.html;
      include enable-php.conf;

                location /w/ {
      rewrite/(.*)$ http://www.1.com/index.html redirect;
                }



我这样还是不对啊。他跳转的。还是到了主域名 www.1.com的内容。。没有获取。。/w里面的内容啊。我是要这个域名获取。/w里面的内容!!!!意思就是要把W这个目录隐藏。。不在浏览器显示

[ 本帖最后由 yang2610278 于 2017-3-31 17:27 编辑 ]

licess 发表于 2017-3-31 20:51:17

回复 7# 的帖子

你前面说了半天的要302
没法隐藏,不允许访问的话就把rewrite规则改成deny all;

yang2610278 发表于 2017-3-31 23:42:54

回复 8# 的帖子

是的,哥。。不是那样我。我也知道呀。。呵呵
页: [1]
查看完整版本: 进来看看,简单问题,我不会。!帮帮忙