Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
希望你们做得好!将 www.example.com 重定向到 example.com 的最佳方式是什么。
我使用过 .htaccess ,但它在 Jquery POST 调用中给我带来了问题..
所以现在我很困惑我可以使用哪种方法来重定向 www
提前致谢。
您不能在不丢失请求正文的情况下 301 重定向 POST 请求,这可能就是您收到 jquery 错误的原因。您可以确保 jquery 请求具有“www”。在主机名中删除,或者您只重定向GET或HEAD请求:
GET
HEAD
RewriteCond %{REQUEST_METHOD} (GET|HEAD) RewriteCond %{HTTP_HOST} ^www\.example\.com$ [NC] RewriteRule ^(.*)$ http://example.com/$1 [L,R]