如何在不使用.htaccess重定向其他所有内容的情况下从root重定向?

时间:2018-06-12 16:23:52

标签: apache .htaccess redirect

我安装了Apache 2.4,并且我尝试仅将根/重定向到特定网址,而不会影响其他所有内容,例如/image.png。 我希望index.html中没有任何元标记的直接重定向。 我尝试使用Redirect 301 / http://example.com/,但它重定向了所有内容。

1 个答案:

答案 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]