TYPECHO WIKI
每一个作品都值得被记录

敬告读者,感谢您对本站的支持,在今年10月份因Racknerd机房硬盘事故,导致本站静态文件全部丢失,包含主题插件网站图片等文件,TypechoWiki经过几次更换站长,凝结了多位站长的心血,如今因为大意只备份了数据库未及时备份静态文件而导致严重数据丢失事故,现已无力回天,经过深思我决定后续可能永久停更该网站,请各位读者寻求其它Typecho周边下载站,另外如果你对本站感兴趣也欢迎报价,我们愿意出售该站联系邮箱[email protected],目前该站的静态文件仅为2019年以前的版本,2019年以后的各位站长精心维护的插件和主题压缩包以及站内图片全部丢失!

Typecho程序伪静态规则大全

Typecho维基君Typecho教程 • 1501次浏览 • 发布 2019-05-22 • 更新 2019-05-22

Typecho程序的伪静态规则不同于wp直接默认可用,需要我们手工加载到空间中才可以生效。这里TypechoWiki整理了一些不同的主机环境中的伪静态规则,希望对大家有所帮助!

1、Linux Apache环境(.htaccess)

下面是在根目录,如果不在根目录文件夹需要修改路径,如 /sub/

RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]

带 www 的跳转到不带的

RewriteCond %{HTTP_HOST} ^www.typecho.wiki
RewriteRule (.*) https://typecho.wiki/$1 [R=301,L]

不带 www 的跳转到带的

RewriteCond %{HTTP_HOST} ^typecho.wiki
RewriteRule (.*) https://www.typecho.wiki/$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]

广告声明:文内含有的对外跳转链接(包括不限于超链接、二维码、口令等形式),用于传递更多信息,节省甄选时间,结果仅供参考,Typecho.Wiki所有文章均包含本声明。
厂商投放

【腾讯云】🎉五一云上盛惠!云服务器99元/月续费同价!

腾讯云五一劳动节海量产品 · 轻松上云!云服务器首年1.8折起,买1年送3个月!超值优惠,性能稳定,让您的云端之旅更加畅享。快来腾讯云选购吧!

广告
添加新评论 »