Thinkphp 入口是

WBOY
Release: 2016-06-23 14:27:17
Original
1333 people have browsed it

php thinkphp url 入口

为什么我输入localhost,后Thinkphp可以自动指向入口url

例如m=public?m=login
或者Index.php?m=index
等等

在哪里配置的,或者默认入口是?

回复讨论(解决方案)

直接把TP放在htdocs下了吧?
默认不是有个.htaccess?里面定义到index.php

一般就是index.php,你可以看看

创建Tp目录,lib下面Action文件夹,tp是控制器去调用相应的html文件 在IndexAction.class.php 文件里面 
也可以通过配置文件config.php 配置入口文件.

入口是index.php

m=public?m=login
这种是可以改的,叫url的伪静态。入口就是index.php,建议上网找个此相关实例的教程看下,这样才好明白。

在你的config.php页面即可配置,配置路由规则。

m=public?m=login
这种是可以改的,叫url的伪静态。入口就是index.php,建议上网找个此相关实例的教程看下,这样才好明白。
我一直觉得: public=login 比较好. 

index.php

入口不是由ThinkPHP决定的,你入口文件是什么名字就是什么名字,
一般前台用 index.php 后台用 admin.php
注:一般web服务器默认的有 index.php index.html index.aspx index.jsp default.aspx 等等 
如果未指定文件如:http://localhost 则会按照 web服务器设置的默认文件顺序一个一个找,未找到就404或者开启了显示目录的话会显示列表
默认的文件顺序是可以修改如.htaccess文件

<IfModule mod_rewrite.c>RewriteEngine onRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)\.html$ index.php/$1 [QSA,PT,L]</IfModule><Files ~ "^.(htaccess|htpasswd)$"> deny from all </Files>DirectoryIndex home.php index.php index.asp index.shtml index.htm index.jsp index.aspx
Copy after login

当前修改默认文件为home.php了 (apache下

默认模块,默认操作的话,
config.php下可以配置

我晕,
上面都是回答的什么呀,、
明显不是rewrite。
一般默认的是index.php。这个是apache或nginx设置的。
然后会加载路由模块(route),
在默认情况下,路由模块会引入实例化默认设置的那个action

这看你的路由规则的

请从index.php入手,自己找,有个文件专门进行路由控制的,自己循着它调用的文件找,这样学习更快,理解更深。

Related labels:
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