Efficient Redirect code for the htaccess
Looking for an efficient Redirect code for the htaccess. There are about 200 links (practically all requests will go through t开发者_如何学编程he redirect)
Goals:
http://example.com/pages.shtml
to be redirected tohttp://example.com/pages
should be 301 redirect keeping in mind page rank preservation
RewriteRule ^([^/]+)\.shtml http://example.com/$1 [L,R=301]
精彩评论