RewriteCond %{HTTP_HOST} ^mydomain.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.mydomain.com$
RewriteRule ^product\-page$ "http\:\/\/www\.mydomain\.com\/product\-page\.html" [R=301,L]
因为商店里有大约100个产品页面。任何人都可以让我有效地将所有www.domain.com/product-pages重定向到www.domain.com/product-pages.html
答案 0 :(得分:0)
目前尚不清楚你想要重定向的方式,但你应该可以使用这样的东西:
RewriteRule ^(.*) http://www.mydomain.com/$1.html [R=301,L]