从https://域别名重定向到安全的https://上的子文件夹

时间:2018-02-12 17:09:58

标签: .htaccess redirect https subdomain subdirectory

我现在有一个https://安全服务器。

但是现在重定向不再起作用了。 重定向,例如来自agenda.harmonicahoek.nl => https://www.harmonicahoek.nl/service/agenda/

这就是现在的.htacces:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.harmonicahoek.nl/$1 [L,R=301]

RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} agenda.harmonicahoek.nl [NC]
RewriteRule ^(.*)$ https://www.harmonicahoek.nl/service/agenda/ [r=301,NC]

但这不起作用。 它将如何运作?

0 个答案:

没有答案