Apache-2.2
vhost 中的 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
像這樣。
試試這個:
重寫引擎開啟 RewriteCond %{REQUEST_URI} !^/en/ RewriteRule /(.*) / en / $ 1 [L, R = 301]