我需要很大的帮助。
我的htaccess
配置为将所有http
的内容重定向到https
,这很好用,但是仅是根内容。
我花了很多时间研究网络如何将URL不是SSL
的网站内容重定向到新的SSL
URL,但是我发现的解决方案不适用于我的网站场景。
我的.HTACCESS
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://example.com/$1 [R=301]
我想要的是这个。
当用户访问http://www.example.com/oldfolder/index.php?site=document-name重定向到https://example.com/new-folder/other-folder/index.php?site=document-name时
但是我什么也没发现。
谢谢。
答案 0 :(得分:0)
dependencies {
classpath 'io.fabric.tools:gradle:1.25.4'
}
如果有人键入RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.org$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.org$
RewriteRule ^/?$ "https\:\/\/www\.example\.org\/home\/" [R=301,L]
,则重定向将起作用。该人将被重定向到example.org
。
要查看,请点击此处cubehub.org
如果您使用的是Cpanel,只需转到Redirects(example.org/home
)并设置URL重定向。