雲伺服器 Z-BlogPHP 偽靜態規則設定
首先在後臺外掛管理中開啟【靜態管理中心】,然後進入管理儲存偽靜態的執行方式。
IIS6 儲存一下程式碼為 httpd.ini 到網站根目錄,自動生效。
[ISAPI_Rewrite]
RewriteRule /page_([0-9]*)\.html /index\.php\?page=$1&rewrite=1&full_uri=$0 [I,L]
RewriteRule /date-([0-9\-]+)(?:_)?([0-9]*)\.html /index\.php\?date=$1&page=$2&rewrite=1&full_uri=$0 [I,L]
RewriteRule /author-([0-9]+)(?:_)?([0-9]*)\.html /index\.php\?auth=$1&page=$2&rewrite=1&full_uri=$0 [I,L]
RewriteRule /tags-([0-9]+)(?:_)?([0-9]*)\.html /index\.php\?tags=$1&page=$2&rewrite=1&full_uri=$0 [I,L]
RewriteRule /category-([0-9]+)(?:_)?([0-9]*)\.html /index\.php\?cate=$1&page=$2&rewrite=1&full_uri=$0 [I,L]
RewriteRule /post/([0-9]+)\.html(\?.*)? /index\.php\?id=$1&rewrite=1&full_uri=$0 [I,L]
RewriteRule /([0-9]+)\.html(\?.*)? /index\.php\?id=$1&rewrite=1&full_uri=$0 [I,L]
IIS7儲存程式碼為 web.config 到網站根目錄,自動生效。
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="/ Z-BlogPHP Imported Rule" stopProcessing="true">
<match url="^.*?" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="index.php/{R:0}" />
</rule>
<rule name="/ Z-BlogPHP Imported Rule index.php" stopProcessing="true">
<match url="^index.php/.*?" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" />
</conditions>
<action type="Rewrite" url="index.php/{R:0}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69957453/viewspace-2771142/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 雲伺服器常用網站偽靜態規則伺服器網站
- thinkphp 偽靜態規則PHP
- Typecho程式偽靜態規則
- 易優cms apache伺服器偽靜態規則Apache伺服器
- Nginx常用Rewrite偽靜態規則Nginx
- PbootCMS網站IIS偽靜態規則boot網站
- PbootCMS網站apache偽靜態規則boot網站Apache
- PbootCMS網站nginx偽靜態規則boot網站Nginx
- pbootcms偽靜態設定教程含apache、naginx、IIS不同環境配置規則bootApache
- PbootCMS偽靜態怎麼設定?boot
- 網站二級目錄或者子目錄安裝WordPress偽靜態規則設定方法,伺服器為nginx網站伺服器Nginx
- 帝國cms偽靜態設定方法
- 帝國CMS 7.5 tags偽靜態設定教程
- 靜態路由規則配置路由
- Nginx/Apache之偽靜態設定 - 運維小結NginxApache運維
- 易優cms網站SEO模組URL配置偽靜態靜態頁面設定網站
- IIS7.0設定 url重寫成html(偽靜態)HTML
- Apache偽靜態html(URLRewrite)設定法ApacheHTML
- PbootCMS登入請求發生錯誤,檢查伺服器環境pathinfo及偽靜態規則配置boot伺服器
- YGBOOK在win系統下的偽靜態規則 web.configWeb
- ASP.NET偽靜態及靜態ASP.NET
- Nginx偽靜態教程Nginx
- pbootcms偽靜態教程boot
- thinkphp Nginx偽靜態PHPNginx
- 偽靜態、靜態和動態的區別
- Zblog Nginx 下二級目錄設定偽靜態程式碼Nginx
- Discuz X2站點URL靜態化(修改.htaccess檔案設定Rewrite規則)
- .NET探索模型路由約定實現偽靜態模型路由
- Oracle動態、靜態引數引數修改規則Oracle
- 網站偽靜態和純靜態區別網站
- nginx偽靜態檔案Nginx
- wordpress偽靜態的原理
- 網站偽靜態配置網站
- THINKPHP3.1開發的企業網站,帶偽靜態url設定PHP網站
- phpstudy安裝選擇,iis+php組合,如何設定偽靜態PHP
- 網站建設有必要做偽靜態嗎?網站
- PHP重定向與偽靜態PHP
- 偽靜態配置apache 和nginxApacheNginx