PHP文件偽靜態(tài)的各種寫法
[重要通告]如您遇疑難雜癥,本站支持知識付費(fèi)業(yè)務(wù),掃右邊二維碼加博主微信,可節(jié)省您寶貴時(shí)間哦!
今天有人在群里問php單頁面如何設(shè)置的偽靜態(tài),那就寫一篇文章解說一下嘍,然后就有了這篇文章,這里以阿帕奇為服務(wù)器軟件,直接上案例啦:
1.把index.html重定向到index.php
RewriteEngine On Options -Indexes ReWriteRule ^index.html$ /index.php [NC]
效果:訪問madamerex.com/index.html效果等于madamerex.com/index.php
2.把index重定向到index.php
RewriteEngine On Options -Indexes ReWriteRule ^index$ /index.php [NC]
效果:訪問madamerex.com/index效果等于madamerex.com/index.php
3.根目錄下的PHP文件,用html后綴也能訪問
寫法1:
RewriteEngine On Options -Indexes ReWriteRule ^([a-zA-Z0-9_]{1,})\.html$ /$1.php [NC]
效果: ? 訪問madamerex.com/index.html效果等于madamerex.com/index.php
訪問madamerex.com/abc.html效果等于madamerex.com/abc.php
4.根目錄下的php文件,直接訪問文件名效果一樣
RewriteEngine On Options -Indexes ReWriteRule ^([a-zA-Z0-9_]{1,})$ /$1.php [NC]
效果: ? 訪問madamerex.com/index效果等于madamerex.com/index.php
訪問madamerex.com/abc效果等于madamerex.com/abc.php
5.訪問文件名+html效果等效后綴為php的文件
RewriteEngine On Options -Indexes RewriteRule ^/?([a-z/]+)\.html$ $1.php [NC]
效果:
訪問madamerex.com/index.html效果等于madamerex.com/index.php
訪問madamerex.com/abc/abc.html效果等于madamerex.com/abc/abc.php
6.訪問所有目錄下的文件等效于訪問文件名+后綴
RewriteEngine On Options -Indexes RewriteRule ^/?([a-z/]+)$ $1.php [NC]
效果:
訪問madamerex.com/index效果等于madamerex.com/index.php
訪問madamerex.com/abc/abc效果等于madamerex.com/abc/abc.php
7.404頁面跳轉(zhuǎn)設(shè)置
目標(biāo):當(dāng)用戶訪問我們不存在的頁面時(shí)候,把網(wǎng)站內(nèi)容跳轉(zhuǎn)到404頁面。在這里,我把404.html作為404頁面,放在網(wǎng)站的根目錄。
RewriteEngine On Options -Indexes ErrorDocument 404 /404.html
PS:延伸閱讀
\w 匹配字母或數(shù)字或下劃線或漢字
\s 匹配任意的空白符
\d 匹配數(shù)字
\b 匹配單詞的開始或結(jié)束
^ 匹配字符串的開始
$ 匹配字符串的結(jié)束
* 重復(fù)零次或更多次
+ 重復(fù)一次或更多次
? 重復(fù)零次或一次
{n} 重復(fù)n次
{n,}重復(fù)n次或更多次
{n,m} 重復(fù)n到m次
問題未解決?付費(fèi)解決問題加Q或微信 2589053300 (即Q號又微信號)右上方掃一掃可加博主微信
所寫所說,是心之所感,思之所悟,行之所得;文當(dāng)無敷衍,落筆求簡潔。 以所舍,求所獲;有所依,方所成!