php header重定向和.htaccess通過網站的SEO重定向有區別嗎?PHP和.htaccess重定向的區別
3
A
回答
0
如果標題相同,我認爲它根本不重要。
4
可能不是 - 取決於你如何做你的重定向。
在PHP:
header("Location: http://www.example.com/"); /* Redirect browser, emits 302 */
如果要發出301,使用方法:
header("Location: http://www.example.com/", true, 301);
如果你在你的.htaccess
這樣做:
Redirect 302 /PATH_TO_REDIRECT http://www.example.com/
那麼會發出302了。
再次,使其發出301很簡單:
Redirect 301 /PATH_TO_REDIRECT http://www.example.com/
一般來說,對於SEO,只是做是有道理的。如果某物被永久移動使用301,如果某物暫時移動(例如在臨時洗牌期間),請使用302(請參閱response code definitions)。
相關問題
- 1. 瞭解重定向和重寫之間的區別.htaccess
- 2. 重定向.htaccess .php?
- 3. php htaccess重定向
- 4. .htaccess php重定向
- 5. 區別www.xyz.com和xyz.com以及如何重定向.htaccess
- 6. 重定向和重寫在.htaccess中的區別(關於SEO和規範標籤)
- 7. 重定向htaccess的PHP
- 8. PHP MVC的.htaccess重定向
- 9. render_template和重定向之間的區別?
- 10. .HTACCESS和重定向
- 11. .htaccess和php重定向導致循環
- 12. .htaccess重定向.php和.html請求
- 13. PHP和.htaccess重定向木材
- 14. 內部重定向 - PHP和.htaccess?
- 15. .htaccess重定向和重寫
- 16. PHP重定向301 - .htaccess
- 17. .htaccess停止php重定向?
- 18. .htaccess在php中重定向
- 19. PHP MVC&.htaccess 301重定向
- 20. 重定向htaccess或PHP?
- 21. htaccess在php中重定向
- 22. HTTPS和htaccess的重定向
- 23. .htaccess的URL重定向到別名
- 24. htaccess重定向和ExpressionEngine
- 25. .htaccess rewriterule和301重定向
- 26. 重定向問題和htaccess
- 27. .htaccess重定向和變量?
- 28. 重定向循環和.htaccess
- 29. PHP時間()和.htaccess%{TIME}區別
- 30. .htaccess圖像到php重定向重寫