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,你如何重定向这个
http://www.somedomain.com/de/foo
对此:
http://www.de-domain.com/foo
重定向应该取决于第二个参数,在上面的示例中为“de”。
根据服务器配置,您应该能够在.htaccessfor上执行此操作somedomain.com。如果这可以正常工作,您可以尝试[R=301,L]使重定向永久化:
.htaccess
somedomain.com
[R=301,L]
RewriteEngine On RewriteCond %{HTTP_HOST} ^(www\.)?somedomain.com$ RewriteRule ^([a-z]{2})/(.*) http://www.$1-domain.com/$2 [R,L]