首页 > 代码库 > [tp3.2.1]开启URL(重写模式),省略URL中的index.php
[tp3.2.1]开启URL(重写模式),省略URL中的index.php
重写模式(省略url中的index.php)
在apache配置文件httpd.conf中,查找
1.mod_rewrite.so, 启动此模块
2.AllowOverride , 值= All
3. 把下面的内容保存为.htaccess文件放到应用入口文件的同级目录下
1 <IfModule mod_rewrite.c>
2 Options +FollowSymlinks
3 RewriteEngine on
4
5 RewriteCond %{REQUEST_FILENAME} !-d
6 RewriteCond %{REQUEST_FILENAME} !-f
7 RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
8
9 </IfModule>
2 Options +FollowSymlinks
3 RewriteEngine on
4
5 RewriteCond %{REQUEST_FILENAME} !-d
6 RewriteCond %{REQUEST_FILENAME} !-f
7 RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
8
9 </IfModule>
[tp3.2.1]开启URL(重写模式),省略URL中的index.php
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。