我的博客有这样的URL方案: http://www.example.com/%YEAR%/%MONTH%/%CATEGORY%/%POST_TITLE%/
现在我想将特定类别的博客重定向到其他域名。该其他域上的URL Scheme类似。
请建议我如何使用.htaccess
进行操作答案 0 :(得分:1)
假设您正在使用Apache,解决方案是使用mod_rewrite。你的.htaccess中的以下内容应该达到你所追求的目标。我假设%YEAR%是四个数字而%MONTH%是两个数字,如果情况不是这样相应调整。
RewriteEngine On
RewriteCond %{REQUEST_URI} ^(/\d{4}/\d{2}/)([^/]+)(/.*)$
RewriteCond %2 ^category1|category2|category3|category5$
RewriteRule ^(.*)$ http://other.example.com$1 [redirect=permanent,last]
每行说明: