我需要重定向那些打字的人
domain.com/jp或
至
www.domain.com/lang=jp
我的.htaccess已经包括了这个
RewriteEngine On
rewritecond %{http_host} ^domain.com$ [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]谢谢你的帮助
发布于 2014-03-25 20:45:41
这应该能行
RewriteEngine On
RewriteRule ^([^/]+)$ http://www.domain.com/lang=$1 [R=302,nc]当您确信重定向工作时,将R=302更改为R-301。
编辑:
RedirectMatch 302 /jp http://www.domain.com/lang=jp
RedirectMatch 302 /cz http://www.domain.com/lang=cz
RedirectMatch 302 /eng http://www.domain.com/lang=eng
RedirectMatch 302 /en http://wwwdomain.com/lang=enhttps://stackoverflow.com/questions/22645715
复制相似问题