虚拟主机中的 Apache 301 重定向

虚拟主机中的 Apache 301 重定向

如果 URL 中没有字符串,我希望重定向(301)该 URL。

例如:

http:://example.com 必须始终重定向到 http:://example.com/en

http:://example.com/test.html 必须始终重定向到 http:://example.com/en/test.html

http:://example.com/test/another_page 必须始终重定向到 http:://example.com/en/test/another_page

像这样。

答案1

尝试这个:

重写引擎开启
RewriteCond %{REQUEST_URI} !^/en/
重写规则 /(.*) /en/$1 [L,R=301]

相关内容