用thinkphp怎么直接访问网站主页

用thinkphp怎么直接访问网站主页
2025-03-24 14:25:10
推荐回答(1个)
回答1:

用url重写吧tp的入口文件给消掉


打开apache的重写规则(网上有)下面有两个all,忘了哪个是了写成all就对了

    Options Indexes FollowSymLinks ExecCGI Includes

    AllowOverride All

    Order allow,deny

    Allow from all

创建一个TXT文本文档,在里面写入一下代码

###########################################


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


###########################################

另存为(因为不能直接保存)       .htaccess    


然后把这个文件放到与入口文件统同级目录


ok!