Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这种情况:
你能帮我设置htaccess吗?
感谢你们!
.htaccess 的简单解决方案:
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} www.example.fr$ [NC] RewriteRule ^$ http://www.example.com/fr/ [L,R=301] RewriteCond %{HTTP_HOST} www.example.com$ [NC] RewriteRule ^$ http://www.example.com/en/ [L,R=301]