迅睿開源框架是一款PHP8高性能·簡單易用的PHP開源開發(fā)框架, 基于MIT開源許可協(xié)議發(fā)布,不限制商業(yè)使用,以多端互聯(lián)為設計理念, 支持的微信公眾號、小程序、APP客戶端、移動端網站、PC網站等多終端式管理系統(tǒng)。
業(yè)務經理
微信掃描以上二維碼
028-61286886
技術咨詢
域名后面帶index.php 如何進行301跳轉取消index.php
回復@龍帝 現在域名后出現index.php,我想做URL規(guī)范化,就是取消index.php,直接跳轉到域名上。
回復@華清陽君
# index.php 301跳轉代碼!
RewriteCond %{THE_REQUEST} /index\.php [NC]
# index.php 301跳轉主頁!
RewriteRule ^index\.php$ http://www.hrbpinpaicehua.com/ [R=301,L]
# /index.php/ index.php目錄跳轉主頁!
RewriteRule ^index\.php/$ http://www.hrbpinpaicehua.com/ [R=301,L]
# /index.php/目錄/ 跳轉!
RewriteRule ^index.php/([a-zA-Z]+)/?$ http://www.hrbpinpaicehua.com/$1/ [L,R=301,QSA]
# /index.php/目錄/數字.html 跳轉!新聞頁面使用
RewriteRule ^index.php/([a-zA-Z]+)/(\d+).html$ http://www.hrbpinpaicehua.com/$1/$2.html [L,R=301,QSA]
# /index.php/目錄/數字_分頁.html 跳轉!欄目分頁使用
RewriteRule ^index.php/([a-zA-Z]+)/(\d+)_(\d+)\.html$ http://www.hrbpinpaicehua.com/$1/$2_$3.html [L,R=301,QSA]
# /index.php/英文字母.html 跳轉!聚合資訊根目錄單頁使用
RewriteRule ^index.php/([a-zA-Z]+)\.html$ http://www.hrbpinpaicehua.com/$1.html [L,R=301,QSA]
# /index.php/英文字母/英文字母.html 跳轉!tag標簽使用
RewriteRule ^index.php/([a-zA-Z]+)/([a-zA-Z]+)\.html$ http://www.hrbpinpaicehua.com/$1/$2.html [L,R=301,QSA]
# /index.php/英文字母/英文字母-p數字.html 跳轉!tag標簽分頁使用
RewriteRule ^index.php/([a-zA-Z]+)/([a-zA-Z]+)-p(\d+)\.html$ http://www.hrbpinpaicehua.com/$1/$2-p$3.html [L,R=301,QSA]
# /index.php/英文字母/英文字母.xml 跳轉!網站地圖使用
RewriteRule ^index.php/([a-zA-Z]+).xml$ http://www.hrbpinpaicehua.com/$1.xml [L,R=301,QSA]
# /index.php/英文字母.txt 跳轉!網站地圖使用
RewriteRule ^index.php/([a-zA-Z]+).txt$ http://www.hrbpinpaicehua.com/$1.txt [L,R=301,QSA]
.htaccess文件做了點規(guī)則,目前驗證是沒有問題的。
回復@龍帝 現在域名后出現index.php,我想做URL規(guī)范化,就是取消index.php,直接跳轉到域名上。
回復@華清陽君
# index.php 301跳轉代碼!
RewriteCond %{THE_REQUEST} /index\.php [NC]
# index.php 301跳轉主頁!
RewriteRule ^index\.php$ http://www.hrbpinpaicehua.com/ [R=301,L]
# /index.php/ index.php目錄跳轉主頁!
RewriteRule ^index\.php/$ http://www.hrbpinpaicehua.com/ [R=301,L]
# /index.php/目錄/ 跳轉!
RewriteRule ^index.php/([a-zA-Z]+)/?$ http://www.hrbpinpaicehua.com/$1/ [L,R=301,QSA]
# /index.php/目錄/數字.html 跳轉!新聞頁面使用
RewriteRule ^index.php/([a-zA-Z]+)/(\d+).html$ http://www.hrbpinpaicehua.com/$1/$2.html [L,R=301,QSA]
# /index.php/目錄/數字_分頁.html 跳轉!欄目分頁使用
RewriteRule ^index.php/([a-zA-Z]+)/(\d+)_(\d+)\.html$ http://www.hrbpinpaicehua.com/$1/$2_$3.html [L,R=301,QSA]
# /index.php/英文字母.html 跳轉!聚合資訊根目錄單頁使用
RewriteRule ^index.php/([a-zA-Z]+)\.html$ http://www.hrbpinpaicehua.com/$1.html [L,R=301,QSA]
# /index.php/英文字母/英文字母.html 跳轉!tag標簽使用
RewriteRule ^index.php/([a-zA-Z]+)/([a-zA-Z]+)\.html$ http://www.hrbpinpaicehua.com/$1/$2.html [L,R=301,QSA]
# /index.php/英文字母/英文字母-p數字.html 跳轉!tag標簽分頁使用
RewriteRule ^index.php/([a-zA-Z]+)/([a-zA-Z]+)-p(\d+)\.html$ http://www.hrbpinpaicehua.com/$1/$2-p$3.html [L,R=301,QSA]
# /index.php/英文字母/英文字母.xml 跳轉!網站地圖使用
RewriteRule ^index.php/([a-zA-Z]+).xml$ http://www.hrbpinpaicehua.com/$1.xml [L,R=301,QSA]
# /index.php/英文字母.txt 跳轉!網站地圖使用
RewriteRule ^index.php/([a-zA-Z]+).txt$ http://www.hrbpinpaicehua.com/$1.txt [L,R=301,QSA]
.htaccess文件做了點規(guī)則,目前驗證是沒有問題的。