我安装了Apache 2.4,并且我尝试仅将根/
重定向到特定网址,而不会影响其他所有内容,例如/image.png
。
我希望index.html
中没有任何元标记的直接重定向。
我尝试使用Redirect 301 / http://example.com/
,但它重定向了所有内容。
答案 0 :(得分:0)
我认为这会让你从https://serverfault.com/a/58787获取:
RewriteEngine on
RewriteCond %{HTTP_HOST} mysite\.com [NC]
RewriteCond %{REQUEST_URI} ^/$
Rewriterule ^(.*)$ http://mysecondsite.com/ [L,R=301]