重定向域而不更改URL

时间:2019-05-09 19:03:58

标签: .htaccess

我试图重定向一个域以指向我的其他域之一,而不更改URL。每当我保存代码时,就会遇到500个内部服务器错误。我目前正在使用以下代码:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^domain2.com
RewriteRule ^(.*) http://www.domain1.com/ [P]

RewriteCond %{SERVER_PORT} !443
RewriteCond %{REQUEST_URI} !^/.well-known
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

我正在尝试使domain2指向domain1。

我没有.htaccess的经验,我是否经常在此代码中犯错误?

谢谢

0 个答案:

没有答案