网站开发技术

记点笔记、 学点技术 欢迎交流建站技术。本站关注lamp技术

您尚未登录。

#1 2014-11-19 14:31:41

admin
管理员

apache环境下 如何去掉index.php

如果index.php 不是在网站的根目录, 那么可以加入 .htaccess 文件

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d        
RewriteRule ^(.*)$ index.php/$1 [L]

RewriteCond $1 !^(index\.php|images|robots\.txt)

如果在根目录可以使用

RewriteEngine on

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d        

RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]

两者的区别在于 #/#index.php 是否有 /


ipbbs.net

离线

页脚

Powered by FluxBB