重定向而无需在APACHE中使用协议

时间:2019-05-20 08:15:30

标签: apache webserver

我想写一个httpd配置重定向,从某个页面到另一个页面,但是在不强制使用加密协议(http / https)的情况下,我尝试了多个示例,尽管它们都不起作用。我的一些想法:

1)启用RewriteEngine

RewriteCond "%{HTTP_REFFERER}"  "^/something/$"
RewriteRule "^/something/$" "%{REQUEST_SCHEME}example.com/test/test1.html" 

2)我希望可以以某种方式工作

RewriteRule "^/something/$"   
"%{REQUEST_SCHEME}example.com/test/test1.html.html" [R=301] 

3)有效,但是如您所见,我必须使用http或https,但我不希望这样做 RedirectMatch 301 "^/something/$" "http://example.com/test/test1.html.html"

0 个答案:

没有答案