typecho 去掉index.php,typecho去掉index.php的方法

typecho去掉index.php的方法

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

11dfab2a99cba44b2afdaf0b88894408.png

推荐:《PHP视频教程》

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

Typecho后台设置永久链接后,会在域名后加上index.php,很多人都接受不了。例如如下网址:http://qqdie.com/index.php/archives/37/,但我们希望最终的形式是这样:http://qqdie.com/archives/37.html。那么我们如何做到这样的效果?

1.配置服务器的rewrite规则

如果在保存上述配置的时候,typecho无法自动配置,那么你可能需要手动配置服务器的rewrite规则。

Linux Apache 环境 (.htaccess):

RewriteEngine On

# 下面是在根目录,文件夹要修改路径

RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

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

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 配置

RewriteEngine On

RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

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

2.后台配置typecho伪静态

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

e5e51ffed30beb58f2300c2868b3d219.png

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

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

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

typecho去掉index.php的方法的教程已介绍完毕,更多请关注跳墙网其他文章教程!

typecho去掉index.php的方法相关教程

Hbuilder如何打包php网页为appindex.php无法被打包到app中

Hbuilder如何打包php网页为app,index.php无法被打包到app中 index.php无法被打包到app中,但是以浏览器的形式访问可以直接指向网页首地址 打包后app页面如果出现广告: 1、可能是引入外部远程js时候被运营商劫持的; 2、如果没有引用远程js或者所有的html都

php去掉字符串中的空格

php去掉字符串中空格的方法:1、使用php函数trim去除;2、使用php函数str_replace去除;3、使用php函数strtr去除;4、使用trimall方法去除;5、通过正则去掉普通空格等等。 推荐:《PHP视频教程》 php中去除字符串中的空格 1.使用php函数trim(): trim($str)

ci框架如何隐藏index.php

ci框架隐藏index.php的方法:首先修改apache配置文件;然后创建htaccess文件;接着修改Ci配置文件;最后重启apache即可。 推荐:《PHP视频教程》 1. 修改 apache 配置文件 开启重写模块 conf/httpd.conf 去掉前面的# LoadModule rewrite_module modules/mod_

php去掉指定字符串的办法

php去掉指定字符串的办法:首先创建一个PHP示例文件;然后定义字符串;最后通过“str_replace(array(_,=,+),,$str);”方法去掉指定字符串即可。 推荐:《PHP视频教程》 用正则可以解决问题,但如果你是用在项目中的话,你就不得不考虑代码的效率问题,显然的,正

python 文件重命名 去掉文件名中的空格

python 文件重命名 去掉文件名中的空格 # -*- coding: utf-8 -*-Created on Fri Sep 25 00:33:23 2020@author: xxxdimport os def file_name(file_dir): for root, dirs, files in os.walk(file_dir): print(root) #当前目录路径 print(+++++++++++++++++++++

php怎么去掉文件后缀名

去掉方法:首先使用strrchr()返回“.后缀名”形式的字符串;然后使用str_replace()将文件名中“.后缀名”形式的字符串替换为空字符即可;语法“str_replace(strrchr(文件名, .),,文件名);”。 php去掉文件后缀名 ?php $filename=help.php; $filename=str_rep

SpringBoot 2.1.1 + SpringSecurity+jwt 去掉Token验证

SpringBoot 2.1.1 + SpringSecurity+jwt 去掉Token验证 SpringBoot 2.1.1+ SpringSecurity+jwt 实现无Token验证 记录一下使用springSecurity实现jwt的授权,并对去掉鉴权认证 工程创建流程 SecurityConfig AuthenticationEntryPointImpl 和 JwtAuthentication

微信小程序 wx.showModal去掉取消按钮以及自定样式

微信小程序 wx.showModal去掉取消按钮以及自定样式 wx.showModal({ title: '提示', content: '您确定要删除该文件吗?', showCancel: true, //是否显示取消按钮-----false去掉取消按钮 cancelText: , //默认是“取消” cancelColor: '', //取消文字的颜色 con

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值