vps交流

请教域名跳转的问题


xxx.com/mjj.html

jjj.com/mjj.html

全部链接都要这样。怎么能实现呀。请教大神

nginx

  1. return 301 https://jjj.com$request_uri;
  2. # 或
  3. location / {
  4. rewrite ^(.*)$ https://jjj.com$1 permanent;
  5. }

复制代码

本帖最后由 hjz 于 2022-7-10 22:40 编辑

RewriteEngine on
RewriteRule ^(.*)$ http://jjj.com/$1 [R=301,L]

htaccess用这个。

感谢。丢伪静态里吗

toot 发表于 2022-7-10 22:38
感谢。丢伪静态里吗

在nginx 站点配置文件里