typecho各种服务器开启伪静态,去掉index.php
1.配置服务器的rewrite规则
如果在保存上述配置的时候,typecho无法自动配置,那么你可能需要手动配置服务器的rewrite规则。Linux Apache 环境 (.htaccess):<IfModule mod_rewrite.c>
RewriteEngine On
# 下面是在根目录,文件夹要修改路径
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 L
</IfModule>
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;
}
}
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后台,开启伪静态,并选择你喜好的url形式:
检测失败也要强制开启,没关系的
! 53044-a0yrado0b04.png (https://magicblue.cn/usr/uploads/2023/03/209854385.png)