如何创建 .htaccess 文件以实现 301 永久重定向。我正在寻找要放入文件中的确切代码。
期待大家的回复。
提前致谢。
答案1
這看起来像是。
http://en.wikipedia.org/wiki/URL_redirection#Using_.htaccess_for_redirection
Redirect permanent /oldpage.html http://www.example.com/newpage.html
Redirect 301 /oldpage.html http://www.example.com/newpage.html
对于 Apache 2.2.14 版本之后
答案2
如果您没有 .htaccess 文件(例如,在 Windows 服务器上),则可以使用元标记重定向单个 html 页面:
<meta http-equiv="refresh" content="0;url=http://www.example.com/newpage">
这与其他元标记一起出现在该部分中。 content="0; 告诉浏览器在页面加载时立即重定向(这可以设置为延迟几秒钟),其余标记是新页面的 URL。
这不是最好的解决方案,因为它必须放入每个页面中,并且动态页面(例如 php 页面)有更好的方法来做到这一点。