雲伺服器 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偽靜態規則重寫Nginx
- Discuz!X3.1標籤偽靜態修改和偽靜態規則
- PbootCMS網站IIS偽靜態規則boot網站
- PbootCMS網站apache偽靜態規則boot網站Apache
- PbootCMS網站nginx偽靜態規則boot網站Nginx
- pbootcms偽靜態設定教程含apache、naginx、IIS不同環境配置規則bootApache
- PbootCMS偽靜態怎麼設定?boot
- 帝國cms偽靜態設定方法
- 帝國CMS 7.5 tags偽靜態設定教程
- 靜態路由規則配置路由
- YGBOOK在win系統下的偽靜態規則 web.configWeb
- Nginx/Apache之偽靜態設定 - 運維小結NginxApache運維
- 易優cms網站SEO模組URL配置偽靜態靜態頁面設定網站
- IIS7.0設定 url重寫成html(偽靜態)HTML
- .htaccess 偽靜態
- Zblog Nginx 下二級目錄設定偽靜態程式碼Nginx
- PbootCMS登入請求發生錯誤,檢查伺服器環境pathinfo及偽靜態規則配置boot伺服器
- 偽靜態、靜態和動態的區別
- pbootcms偽靜態教程boot
- thinkphp Nginx偽靜態PHPNginx
- .NET探索模型路由約定實現偽靜態模型路由
- shopnc怎麼開啟偽靜態 shopnc開啟偽靜態的方法
- 網站偽靜態配置網站
- nginx偽靜態檔案Nginx
- THINKPHP3.1開發的企業網站,帶偽靜態url設定PHP網站
- 網站建設有必要做偽靜態嗎?網站
- Ubuntu裡怎樣設定靜態IP?Ubuntu中設定靜態IP的方法Ubuntu
- PHP重定向與偽靜態PHP
- 偽靜態配置apache 和nginxApacheNginx
- ZBlogPHP怎麼生成偽靜態?PHP
- 寶塔如何新增偽靜態
- [提問交流]當程式不在根目錄的時候怎麼設定偽靜態
- 你知道什麼是偽靜態嗎?它有什麼作用?如何實現偽靜態呢?
- Ubuntu 16.04 Server 設定靜態IPUbuntuServer