问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

如何去掉index.php目录

发布网友 发布时间:2022-04-28 02:22

我来回答

3个回答

懂视网 时间:2022-04-28 06:43

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

推荐:《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):

<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伪静态

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

d43115ed430fc671e7bdafc4b0be38a.png

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

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

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

热心网友 时间:2022-04-28 03:51

apache去掉index.php
1.编辑conf/httpd.conf配置文件
#LoadMole rewrite_mole moles/mod_rewrite.so 把该行前的#去掉
同时对应Directory下要配置 AllowOverride All
2.在 CI 根目录下(即在index.php,system的同级目录下)新建立一个配置文件,命名为: .htaccess 内容如下:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|robots\.txt)
RewriteRule ^(.*)$ index.php/$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(application|moles|plugins|system|themes) index.php/$1 [L]
3.把system/application/config/config.php 中$config['index_page'] = "index.php";改为$config['index_page'] = "";
4.重启apache

2
nginx去掉index.php
1.编辑nginx.conf文件
vi /usr/local/xxxxx/nginx/conf/nginx.conf
#nginx去掉index.php
location / {
rewrite ^/$ /index.php last;
#防止某些文件夹被直接访问
rewrite ^/(?!index\.php|robots\.txt|uploadedImages|resource|images|js|css|styles|static)(.*)$ /index.php/$1 last;
}
2.config/config.php下配置$config['index_page'] = '';
3..重启nginx
3
去掉默认的index方法,如图的URL配置如:
config/routes.php,配置$route['catalogues/(:any)'] = "catalogues/index/$1";
其中(:any)表示匹配所有除CI保留关键字外的内容,后面的$1为index传入的参数内容。
多个参数采用多个(:any),如两个参数的为:$route['catalogues/(:any)/(:any)'] = "catalogues/index/$1/$2";
注:route规则如果同一目录下精确配置要在模糊配置上面,否则不起作用,如:
$route['catalogues/more'] = "catalogues/more";
$route['catalogues/(:any)'] = "catalogues/index/$1";

END
注意事项

route规则如果同一目录下精确配置要在模糊配置上面,否则不起作用
nginx服务器不需要.htaccess文件

热心网友 时间:2022-04-28 05:09

  apache去掉index.php
  1.编辑conf/httpd.conf配置文件
  #LoadMole rewrite_mole moles/mod_rewrite.so 把该行前的#去掉
  同时对应Directory下要配置 AllowOverride All
  2.在 CI 根目录下(即在index.php,system的同级目录下)新建立一个配置文件,命名为: .htaccess 内容如下:
  RewriteEngine On
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteCond $1 !^(index\.php|robots\.txt)
  RewriteRule ^(.*)$ index.php/$1
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteRule ^(application|moles|plugins|system|themes) index.php/$1 [L]
  3.把system/application/config/config.php 中$config['index_page'] = "index.php";改为$config['index_page'] = "";
  4.重启apache
  php CI 实战教程:[9]如何去掉index.php目录
  nginx去掉index.php
  1.编辑nginx.conf文件
  vi /usr/local/xxxxx/nginx/conf/nginx.conf
  #nginx去掉index.php
  location / {
  rewrite ^/$ /index.php last;
  #防止某些文件夹被直接访问
  rewrite ^/(?!index\.php|robots\.txt|uploadedImages|resource|images|js|css|styles|static)(.*)$ /index.php/$1 last;
  }
  2.config/config.php下配置$config['index_page'] = '';
  3..重启nginx
  去掉默认的index方法,如图的URL配置如:
  config/routes.php,配置$route['catalogues/(:any)'] = "catalogues/index/$1";
  其中(:any)表示匹配所有除CI保留关键字外的内容,后面的$1为index传入的参数内容。
  多个参数采用多个(:any),如两个参数的为:$route['catalogues/(:any)/(:any)'] = "catalogues/index/$1/$2";
  注:route规则如果同一目录下精确配置要在模糊配置上面,否则不起作用,如:
  $route['catalogues/more'] = "catalogues/more";
  $route['catalogues/(:any)'] = "catalogues/index/$1";
  php CI 实战教程:[9]如何去掉index.php目录
  END
  注意事项
  route规则如果同一目录下精确配置要在模糊配置上面,否则不起作用
  nginx服务器不需要.htaccess文件
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
在公交车上实施扒窃,会受到怎样的处罚? 交通违法行为识别 公交车扒窃会如何处罚? 郑州鱼缸清洗找哪家公司做得比较好? 郑州有没有专业维修鱼缸,清洗鱼缸的? ...的鱼缸,放在办公室养些鱼水草之类的。郑州哪里有卖这样的鱼缸。_百... 我们公司想要定做个观赏鱼缸,不知道郑州哪家公司最专业? 谁知道郑州生态鱼缸定做哪家做的效果最好? 联想电脑启用无线功能的功能键? 笔记本电脑怎么连接网笔记本电脑怎样连接无线网 php中浮点型怎样转化成整型 PHP怎么把数组里的值转义成int值用echo输出 PHP如何把时间转换数据库的int? php怎么把中文的日期转换成整型 怎么隐藏手机号码 怎么隐藏号码 如何实现隐藏真实手机号 如何隐藏自己电话号码? 怎样可以隐藏自己的手机号码 PHP删除数组中某个元素后,键标如何重新排序? php删除数组中指定的单元 PHP删除数组中指定的值 php为什么变量要初始化 向高手讨教 php怎么初始化一个CURL会话 php 如何初始化3个空元素数组 THINKPHP里面的_initialize初始化接口有什么意思? 百川 导购demo怎么初始化 php 使用PHP对数据库某些表进行初始化操作 PHP 变量怎么初始化清零操作 php怎么连接mysql数据库啊 typecho设置伪静态怎么隐藏intex.php 怎么把中间的index.php 去掉 typecho 为什么url里有index.php WordPress链接中如何去掉index.php? 如何去掉index.php wordpress固定链接地址怎么去掉 index.php godaddy服务器是WINDOWS服务器安装了Typecho最新版,登录后出现:登录时显示index.php&#47;action&#47;login 404, 怎么去掉首页后面自带的index.html 关于PHP获取URL后去掉index.php的问题 TP的URL重写去掉index.php在IIS下如何实现 joomla如何去掉index.php EyouCms怎么去除URL中的index.php 怎么把织梦网这个后面网址去掉index.php?upcache=1 去掉网站域名后面的index.php PHP怎么实时验证邮箱是否被注册了? PHP中如何实现常用邮箱的基本判断 php如何实现用购买的网站空间的邮箱发验证邮件给用户? 网站用PHP架构的,想做用户邮箱验证功能。只在域名提供商买了域名和空间和数据库,是不是还要买企业邮 php验证邮箱格式 php源码手机验证更换成邮箱验证