打开 D:\xampp\apache\conf\http.conf
<Directory "D:/xampp/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks Includes ExecCGI
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
Require all granted
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
#不显示index.php
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^/?(.*)$ /index.php?%{QUERY_STRING} [L,NC]
#RewriteRule ^(.*)$ index.php?$1 [QSA,L]
</IfModule>
</Directory>
apache 访问www.a.com/index.php/index 去除index.php
原创
©著作权归作者所有:来自51CTO博客作者心疼五百块大洋的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
python的test函数如何执行
单元测试 颗粒度最小,一般由开发小组采用白盒方式来测试,主要测试单元是否符合 “ 设计 ” ;是指对软件中的最小可测试单元进行检查和验证。 Unittest 重要组成 unittest 中最核心的部分是: TestFixture 、 TestCase 、 TestSuite 、
python的test函数如何执行 单元测试 python 测试用例 xml文件 -
java 1多线程售票问题
1. 需求有三个窗口同时卖票à并行共101张票,票号从1到101 2. 线程的概念在写代码之前我们先来复习一下线程的基本概念。 进程:是一个正在执行中的程序。每一个进程执行都有一个执行顺序,该顺序是一个执行路径,或者称为一个控制
java 1多线程售票问题 java 多线程 线程安全 同步代码块