一、Apache的偽靜態(tài)配置
1、網(wǎng)站根目錄下需要有 .htaccess 文件,沒有則自己創(chuàng)建一個(gè),內(nèi)容
IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
/IfModule>
如果你的apache是fastcgi模式下,則需要修改
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
替換成
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
2、在apache的配置文件httpd.conf中查找 : LoadModule rewrite_module modules/mod_rewrite.so 將前面的#去掉,假如沒有這段內(nèi)容,則需要手動加上
3、在apache的配置文件httpd.conf中查找所有的 AllowOverride None,將 None 都替換成 All . 保存文件 并重啟apache服務(wù)。
二、Nginx的偽靜態(tài)配置
找到nginx的配置文件 nginx.conf, 在里面的 server{ } 里增加以下內(nèi)容
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
重啟nginx即可生效
三、IIS的偽靜態(tài)配置
如果你的服務(wù)器環(huán)境支持ISAPI_Rewrite的話,可以配置httpd.ini文件,添加下面的內(nèi)容:
RewriteRule (.*)$ /index\.php\&;s=$1 [I]
在IIS的高版本下面可以配置web.Config,在中間添加rewrite節(jié)點(diǎn):
rewrite>
rules>
rule name="OrgPage" stopProcessing="true">
match url="^(.*)$" />
conditions logicalGrouping="MatchAll">
add input="{HTTP_HOST}" pattern="^(.*)$" />
add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
/conditions>
action type="Rewrite" url="index.php/{R:1}" />
/rule>
/rules>
/rewrite>
以上所述是小編給大家介紹的PHP各環(huán)境下的偽靜態(tài)配置詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時(shí)回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
您可能感興趣的文章:- PHP針對偽靜態(tài)的注入總結(jié)【附asp與Python相關(guān)代碼】
- PHPCMS手機(jī)站偽靜態(tài)設(shè)置詳細(xì)教程
- 使用純php代碼實(shí)現(xiàn)頁面?zhèn)戊o態(tài)的方法
- PHP偽靜態(tài)Rewrite設(shè)置之APACHE篇
- 基于php偽靜態(tài)的實(shí)現(xiàn)詳細(xì)介紹