實現301頁面跳轉之前需要對apache配置做下修改如
apache預設是沒有開啟mod_rewrite模組的,
1,將
**如下:
#loadmodule rewrite_module modules/mod_rewrite.so
這一行前面的#號去掉,http.conf的站點目錄配置,另一種是空間使用者常用的
改為 **如下:
loadmodule rewrite_module modules/mod_rewrite.so,
2,將allowoverride none 改為:allowoverride all
一、寫.htaccess檔案,關於301重定向的寫法:
1) 常見的將不帶www的網域名稱轉向到帶www的網域名稱下 舉例:**.com重定向到www.**.com
**如下:
二、apache下vhosts.conf中配置301轉向。
**如下:
documentroot 「e:/***」
servername http://www.網域名稱.net
servername 網域名稱.net
redirectmatch permanent ^/(.*) http://www.網域名稱.net$1 例
將不帶www的網域名稱轉向到帶www的網域名稱下
**如下:
options +followsymlinks
rewriteengine on
rewritecond % ^***.cn [nc]
rewriterule ^(.*)$ [l,r=301]
常用的客戶端請求錯誤返回**:
400 - bad request 錯誤請求
401 authorization required需要驗證
403 forbidden禁止
404 not found找不到頁面
405 method not allowed
408 request timed out
411 content length required
412 precondition failed
413 request entity too long
414 request uri too long
415 unsupported media type
大家可使用ff瀏覽firebug來檢測是否返回了301狀態**
nginx實現301跳轉
nginx 各引數作用 arg parameter 這個變數包含get請求中,如果有變數parameter時的值。args 這個變數等於請求行中 get請求 的引數,例如foo 123 bar blahblah binary remote addr 二進位制的客戶位址。body bytes sent...
php實現301跳轉
在php中正常的臨時跳轉通常使用 header location test.php 但是這種返回的狀態碼是302 如果要實現301跳轉的話,需要在之前設定下狀態碼 注意 雖然客戶端轉向了,但程式還會向下執行,所以要exit 301,302 都是http狀態的編碼,都代表著某個url發生了轉移,不同之...
apache做301重定向的方法
方法一 加在httpd.conf 1 這裡我使用mod rewrite重寫url的方式來做,做之前朋友記得檢查一下你的apache是否已經載入了rewrite模組。如圖所示的那個模組,在apahce的httpd.conf檔案裡面檢視 2 如果已經支援了rewrite,直接在你要做的站點配置檔案裡面新...