这是我所做的并且效果很好:
#redirect subdomains to controller
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com$ [NC]
RewriteRule ^([a-zA-Z0-9-_]*)$ blog.php?blog_uid=%1 [L,QSA]
现在我想重定向
http://example.domain.com/post-123.html
至
blog.php?blog_id=example&post_id=123
但这不起作用:
RewriteCond %{HTTP_HOST} ^(.*)\.domain\.com$ [NC]
RewriteRule ^([a-zA-Z0-9-_]*)/post-([0-9]+)\.html$ blog.php?blog_uid=%1&post_id=%2 [L,QSA]
怎么做?实际上如何将此类子域请求重定向到重写条件(它不是真实页面)。