打开 D:\xampp\apache\conf\http.conf    #    # Possible values for the Options directive are "None", "All",    # or any combination of:    #   Indexes Includes FollowSymLinks SymLinksifOwne
原创 2022-12-06 01:10:24
1363阅读
public function getList()      {          $catid = input('get.catid');          $pageSize = input('pageSize');          $page = input('page');          $offset = ($page-1)*$pageSize;          if($cati
转载 2021-03-26 09:43:29
723阅读
2评论
 自己写了一个mvc 但是有的hosting无法通过 htaccess 正常隐藏 index.phpindex.php?arg=, 下
原创 2011-01-08 04:56:07
163阅读
Linux是一款非常流行的操作系统,被广泛应用于服务器和个人电脑中,而index.php文件则是一个常见的网页文件,常用于网站开发中。在Linux系统中,使用index.php文件可以实现网页的动态效果和交互功能。 在Linux系统中,index.php文件通常会被放置在网站的根目录下,作为网站的首页文件。当用户访问这个网站时,服务器会自动寻找并加载index.php文件,然后将其中的代码解析并
原创 7月前
10阅读
author:咔咔location / { if (!-e $request_filename){ rewrite ^/(.*)$ /index.php/$1 last; break; }}
原创 2019-05-14 14:26:15
242阅读
在Kubernetes(K8S)环境中,使用Nginx去掉index.php是一个常见的需求,可以通过一些简单的配置来实现。本文将向你介绍如何通过K8S和Nginx的配合来实现这个目标。 ### 流程概述 在Kubernetes中实现“nginx去掉index.php”的过程可以分为以下几个步骤: | 步骤 | 操作 | |------|------| | 1. | 创建一个Deploymen
原创 6月前
155阅读
.htaccess文件配置1 2 RewriteEngine On3 RewriteBase /4 RewriteCond $1 !^(index\.php|assets|system|robots\.txt) 5 RewriteRule ^(.*)$ /index.php/$1 ...
原创 2023-02-03 09:18:36
143阅读
要配置 Apache 服务器以加载 index.html 和 index.php 文件,你可以按照以下步骤进行操作:打开 Apache 的配置文件(通常位于 /etc/httpd/conf/httpd.conf 或 /etc/apache2/apache2.conf)。在配置文件中找到 DirectoryIndex 指令。这个指令指定了服务器在访问目录时默认加载的文件列表。将 index.html
原创 1月前
20阅读
隐藏index.php一、codeignitercodeigniter和许多php框架一样,有个单一入口index.php,从url上看,显得很不友好。通过apache的rewirte,是可以隐藏掉的,实现伪url。 打开codeigniter下system\application\config中的config.php 找到$config['index_page'] = "index.php"; 改为 $config['index_page'] = ""; 修改apache conf下的配置文件 httpd.conf #
PHP
原创 2021-07-28 09:49:08
983阅读
方法一https.ini 中     #    # AllowOverride controls what directives may be placed in .htacc=
原创 2022-11-21 17:58:26
89阅读
[autoindex:error] [pid 2628] [client 162.158.118.229:36792] AH01276: Cannot serve directory /var/www/stage/nadclinic/: No matching DirectoryIndex (index.php) found, and server-generated directory index forbidden by Options directive
原创 2019-09-20 23:46:11
4962阅读
引言:我们就从首页切入,进行Ecshop的研究。Ecshop是电子商务解决方案,很成熟很完善。但是要学会进行二次开发。什么帮助文档都不需要,直接代码入手。代码就是最好的帮助文档。直接代码:index.php剖析define('IN_ECS', true);require(dirname(__FILE__) . '/includes/init.php');首先是定义一个常量,标识已经进入ECS。然后引入includes目录下的init.php文件。includes里面是一些核心文件,核心类。好,我们直接进入init.php文件下探索个究竟。require(ROOT
原创 2021-08-05 15:58:20
590阅读
原来显示路径:http://localhost/APP/index.php/Works设置后显示路径:http://localhost/APP/Works一、打开APACHE目录中httpd.con配置文件:1.加载了mod_rewrite.so模块#LoadModule rewrite_module modules/mod_rewrite.so(去掉#)2.搜
原创 2022-03-08 13:59:09
229阅读
针对不同服务器、虚拟空间,运行PHP的环境也有所不同,目前主要分为:Nginx、apache、IIS以及其他服务器。下面分享如何去掉URL上的index.php字符,记得在管理后台清除缓存,对于一些ECS服务器可能要重启nginx等服务!【Nginx服务器】在原有的nginx重写文件里新增以下代码片段:location / { if (!-e $request_filename) { rewr
原创 2023-05-09 11:41:59
85阅读
server { listen 80; server_name localhost; index index. index.htm index.php;#前后顺序有关系,越在前优先级别越高 root /app/www/default; location ~ .*\.(php|php5)?$ ...
原创 2022-03-03 14:43:57
370阅读
Ci删除index.php办法:创建.htaccess 文件放到网站的根目录下,文件中的内容如下:RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-f //此处有大坑。加上这句可保证一般css、js文件正常加载。(注意删掉这句注释哦)Rewrite...
转载 2013-06-22 21:43:00
151阅读
2评论
按照thinkphp手册中来讲,apache服务器下,隐藏thinkphp入口文件有3步:httpd.conf配置文件中加载了mod_rewrite.so模块AllowOverride None 将None改为All把下面的内容保存为.htaccess文件放到应用入口文件的同级目录下: ...
转载 2017-07-28 18:03:00
44阅读
2评论
index.php是简单的html页面,包含一些占位符,其中将显示可排序的列表和状态消息。
转载 2009-10-29 10:18:51
439阅读
网上有很多方法都要引入.htaccess文件,如果是在测试环境下,动态和静态的文件放到一块,可能测试会有一定的问题(由于全部定向到index.php),静态网页访问不了。这里提供一种方法,只需要修改http.conf文件,步骤:1 :在配置虚拟目录下加入     <Directory />      Options Index
转载 精选 2014-09-25 17:06:49
595阅读
1.网络来源:http://www.shouce.ren/post/view/id/1529 2.实际项目中的,我的做法(我的项目全在:application/home 下)
转载 2017-06-07 18:15:00
127阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5