Typecho程式偽靜態規則

零三鄧何芯桃379發表於2019-05-08

Typecho程式的偽靜態規則不同於wp直接預設可用,需要我們手工載入到空間中才可以生效。下面老左整理了這款程式在不同的主機環境中的偽靜態規則,希望對大家有所幫助 雖然老左部落格是用的Wordpress程式,但是我不得不說wp程式即便是一款非常棒的程式之一,但是在資源佔用方面的問題還是比較差的。如果你使用過WP程式建立部落格應該知道,在網站訪問量達到幾百的時候一般的主機CPU會超標,甚至會出現被暫停主機使用。因為一般的主機產品CPU限制為5-10%,所以很容易超標。Typecho部落格程式是國人開發的,雖然目前不在更新但是功能基本完善,結構看類似WORDPRESS,但是在佔用資源上比WP好很多。所以Typecho使用者還是非常多的。

Typecho程式的偽靜態規則不同於wp直接預設可用,需要我們手工載入到空間中才可以生效。下面老左整理了這款程式在不同的主機環境中的偽靜態規則,希望對大家有所幫助。

1、Linux Apache環境(.htaccess):
複製程式碼 程式碼如下:
下面是在根目錄,資料夾要修改路徑,如 /laozuo/
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]

帶 www 的跳轉到不帶的
RewriteCond %{HTTP_HOST} ^
RewriteRule (.*) [R=301,L]

不帶 www 的跳轉到帶的
RewriteCond %{HTTP_HOST} ^laozuo.org
RewriteRule (.*) http:///$1 [R=301,L]
2、Linux Apache環境(Nginx):
複製程式碼 程式碼如下: 
location / {
index index.html index.php;
if (-f $request_filename/index.html) {
rewrite (.) $1/index.html break;嬰兒起名
}
if (-f $request_filename/index.php) {
rewrite (.) $1/index.php;
}
if (!-f $request_filename) {
rewrite (.*) /index.php;
}
}

3、Windows IIS偽靜態(httpd.ini):
複製程式碼 程式碼如下:
[ISAPI_Rewrite]

3600 = 1 hour
CacheClockRate 3600
RepeatLimit 32

中文tag解決
RewriteRule /tag/(.*) /index.php?tag=$1

sitemapxml
RewriteRule /sitemap.xml /sitemap.xml [L]
RewriteRule /favicon.ico /favicon.ico [L]

內容頁
RewriteRule /(.*).html /index.php/$1.html [L]

評論
RewriteRule /(.*)/comment /index.php/$1/comment [L]

分類頁
RewriteRule /category/(.*) /index.php/category/$1 [L]

分頁
RewriteRule /page/(.*) /index.php/page/$1 [L]

搜尋頁
RewriteRule /search/(.*) /index.php/search/$1 [L]

feed
RewriteRule /feed/(.*) /index.php/feed/$1 [L]

日期歸檔
RewriteRule /2(.*) /index.php/2$1 [L]

上傳圖片等
RewriteRule /action(.*) /index.php/action$1 [L]

因為老左只有apache空間,所以測試是沒有問題的,其他環境有朋友可以測試


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69918221/viewspace-2643677/,如需轉載,請註明出處,否則將追究法律責任。

相關文章