常見的(de)幾款虛機僞靜态配置方法
僞靜态配置
标簽作用(yòng):配置程序僞靜态後URL中将不再包含兼容模式的(de)問号,整個(gè)地址更美(měi)觀,也(yě)便于推廣優化(huà)。
适用(yòng)版本:2.X 、3.X
1、IIS7+環境(IIS6的(de)環境自行百度):
1)安裝rewrite組件,如果使用(yòng)空間一般空間商默認已經安裝;
2)到後台配置參數中開啓僞靜态開關;
3)在站點目錄建立web.config文件(可(kě)到源碼包rewrite目錄下(xià)拷貝規則),規則内容如下(xià):
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="reIndex" stopProcessing="true"> <match url="^(.*)$" ignoreCase="true" /> <conditions logicalGrouping="MatchAll"> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" /> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> </conditions> <action type="Rewrite" url="index.php?p={R:1}" appendQueryString="true" /> </rule> </rules> </rewrite> </system.webServer> </configuration>
2、Apache環境
1)開啓Apache重寫模塊,具體請百度,如果使用(yòng)空間一般空間商默認已經開啓;
2)到後台配置參數中開啓僞靜态開關;
3)在站點目錄建立.htaccess文件(可(kě)到源碼包rewrite目錄下(xià)拷貝規則),規則内容如下(xià):
<IfModule mod_rewrite.c> Options +FollowSymlinks RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?p=$1 [QSA,PT,L] </IfModule>
3、Nginx環境
1、到後台配置參數中開啓僞靜态;
2、在nginx虛拟主機location配置中添加規則,規則如下(xià):
location / { if (!-e $request_filename){ rewrite ^/index.php(.*)$ /index.php?p=$1 last; rewrite ^(.*)$ /index.php?s=$1 last; } }
注意:Nginx中如果站點部署在二級目錄,請對(duì)應修改重寫規則, 如:二級目錄爲test則:rewrite ^/test/(.*)$ /test/index.php?p=$1 last;
文章(zhāng)轉載自:https://www.pbootcms.com/docs/239.html