Home > Backend Development > PHP Tutorial > (急)thinkphp中的访问路径问题

(急)thinkphp中的访问路径问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-23 13:17:13
Original
1691 people have browsed it

问题:在tp框架下,只输入ip地址后,跳转到我指定的view文件夹下的html页面。(即不需要输入tp框架规定的index.php/Home/Main等等)

1、项目用的是thinkphp框架(直接修改apache的配置文件好像不行,因为项目必须从tp框架中index.php开始)

2、现在我输入的是“http://http://localhost/car_project/index.php/Home/Main/homePage”
      我希望输入“http://http://localhost”到达和上面一样的页面

3、目前我输入“http://http://localhost”,运行的是www文件夹里面的index.php文件

挺急的,项目接近尾声了,但没法一输入域名直接显示主页,每次都是输入一长串tp框架规定的路径显示主页,希望大家能帮帮忙,谢谢


回复讨论(解决方案)

服务器配置里把DocumentRoot "D:/wamp/www/"


www/都换成www/car_project/

然后修改你项目里的Application/Common/Conf/配置文件
'DEFAULT_THEME'         =>  '', // 默认模板主题名称
'DEFAULT_MODULE'        =>  'Home',  // 默认模块
'DEFAULT_CONTROLLER'    =>  'Main', // 默认控制器名称'
DEFAULT_ACTION'        =>  'homePage', // 默认操作名称

服务器配置里把DocumentRoot "D:/wamp/www/"


www/都换成www/car_project/

然后修改你项目里的Application/Common/Conf/配置文件
'DEFAULT_THEME'         =>  '', // 默认模板主题名称
'DEFAULT_MODULE'        =>  'Home',  // 默认模块
'DEFAULT_CONTROLLER'    =>  'Main', // 默认控制器名称'
DEFAULT_ACTION'        =>  'homePage', // 默认操作名称



太感谢了
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template