老K博客 - 一个源码和技术分享的博客

typecho伪静态去掉index.php的方法

老K博客
2023-07-13 / 7 评论 / 54 阅读 / 正在检测是否收录...
广告

typecho去掉index.php的方法:首先配置服务器的rewrite规则;然后修改nginx以及apache配置;最后在后台配置typecho伪静态即可。

typecho开启伪静态,去掉那个讨厌的index.php

Typecho默认会在文章或独立页面后加上index.php,很多人都接受不了。例如如下网址:https://www.laokbk.cn/index.php/archives/60/,但我们希望最终的形式是这样:http://www.laokbk.cn/archives/60/。那么我们如何做到这样的效果?

1.配置服务器的重写规则

如果在保存上述配置的时候,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]...

nginx配置

server {

        listen          80;

        server_name     yourdomain.com;

        root            /home/yourdomain/www/;

        index           index.html index.htm index.php;

        if (!-e $request_filename) {

            rewrite ^(.*)$ /index.php$1 last;

        }

        location ~ .*\.php(\/.*)*$ {

            include fastcgi.conf;

            fastcgi_pass  127.0.0.1:9000;

        }

        access_log logs/yourdomain.log combined;

    }...

Apache 配置

<IfModule mod_rewrite.c>

    RewriteEngine On

    RewriteBase /

    RewriteCond %{REQUEST_FILENAME} !-f

    RewriteCond %{REQUEST_FILENAME} !-d

    RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]

</IfModule>...

2.后台配置类型伪静态

如图,在typecho后台,开启伪静态,并选择你喜好的url形式:

2023/07/13/1267c2

具体操作,根据本人实际操作如下

我的虚拟主机是apache的,在网站根目录找到.htaccess,有的没有可能是设置了隐藏文件,显示隐藏文件就能看到了。

然后编辑.htaccess文件,加入上文中对应的apache配置代码保存。然后去typecho程序后台,设置>永久链接,按照上文中图片的设置,保存即可。

用宝塔面板的直接开启配置的伪静态规则即可。

2023/07/13/1282pav

本文共 348 个字数,平均阅读时长 ≈ 1分钟
广告
0

海报

正在生成.....

评论 (7)

语录
取消
  1. 头像
    拿了
    昆明 ·Android · Google Chrome
    沙发

    必须洗净一切往事,否则你永远无法清楚自由地看这个世界

    回复 删除 垃圾
  2. 头像
    虚拟
    ·Windows 10 · Google Chrome
    板凳

    这座城市里有很多人,但我对这些人无话可说;我的心里有很多话,但我的这些话,无人可说。

    回复 删除 垃圾
  3. 头像
    五万楼
    南京 ·Windows 10 · Google Chrome
    地毯

    我拒绝,再一次和你分开。

    回复 删除 垃圾
CC BY-NC-ND