.htaccess redirect anchor page/page#anchor to url
问题 How do I redirect page/page#anchor to http://www.example.com/page/page . I tried the following code, but it's not working RewriteRule ^page/page#anchor http://www.example.com/page/page [NE,L] Could you please help me? Peter 回答1: That can't be done on server side since URI component after # is handled by client side only. You can alternatively use this Javascript code to do the same: <script> if (location.href.indexOf("#") > -1) { location.assign(location.href.replace(/(page\/page)#anchor/i, "