程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP學習筆記:偽靜態規則的書寫,php學習筆記偽靜態

PHP學習筆記:偽靜態規則的書寫,php學習筆記偽靜態

編輯:關於PHP編程

PHP學習筆記:偽靜態規則的書寫,php學習筆記偽靜態


這裡以阿帕奇為服務器軟件,直接上案例:

1.把index.html重定向到index.php

RewriteEngine On

Options -Indexes

ReWriteRule ^index.html$  /index.php  [NC]

效果:訪問www.test.com/index.html效果等於www.test.com/index.php

 

2.把index重定向到index.php

RewriteEngine On

Options -Indexes

ReWriteRule ^index$  /index.php  [NC]

效果:訪問www.test.com/index效果等於www.test.com/index.php

 

3.根目錄下的PHP文件,用html後綴也能訪問

寫法1:

RewriteEngine On
Options -Indexes

ReWriteRule ^([a-zA-Z0-9_]{1,})\.html$  /$1.php  [NC]

效果:   訪問www.test.com/index.html效果等於www.test.com/index.php

    訪問www.test.com/abc.html效果等於www.test.com/abc.php

 4.根目錄下的php文件,直接訪問文件名效果一樣

RewriteEngine On
Options -Indexes

ReWriteRule ^([a-zA-Z0-9_]{1,})$  /$1.php  [NC]

效果:   訪問www.test.com/index效果等於www.test.com/index.php

    訪問www.test.com/abc效果等於www.test.com/abc.php

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved