thinkphp 如何去除url中的index.php-php程序员的笔记
2个回答
展开全部
打开httpd.conf文件,去掉代码中 LoadModule rewrite_module modules/mod_rewrite.so前面的#
在thinkphp程序的根目录,新建.htaccess文件,输入
RewriteEngine on
RewriteCond $1 !^(index\.php|style|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
如果网站为http://localhost/1269784650
则最后一行要改为RewriteRule ^(.*)$ /1269784650/index.php/$1 [L]
在thinkphp的config.php文件中,将$config['index_page'] = "index.php"; 修改为 $config['index_page'] = "";
在thinkphp程序的根目录,新建.htaccess文件,输入
RewriteEngine on
RewriteCond $1 !^(index\.php|style|robots\.txt)
RewriteRule ^(.*)$ /index.php/$1 [L]
如果网站为http://localhost/1269784650
则最后一行要改为RewriteRule ^(.*)$ /1269784650/index.php/$1 [L]
在thinkphp的config.php文件中,将$config['index_page'] = "index.php"; 修改为 $config['index_page'] = "";
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询