当前位置:Gxlcms > mysql > yii中访问出现的错误:Youdon'thavepermissiontoacces

yii中访问出现的错误:Youdon'thavepermissiontoacces

时间:2021-07-01 10:21:17 帮助过:34人阅读

访问路径http://localhost/yii/framework/yiiProject时出现403错误提示: You don't have permission to access / on this server. 于是google、百度上查了一通。大都是建议在apache的httpd.conf中将 Directory/ OptionsFollowSymLinks AllowOverrideNone Or

访问路径http://localhost/yii/framework/yiiProject时出现403错误提示:

You don't have permission to access / on this server.

于是google、百度上查了一通。大都是建议在apache的httpd.conf中将


Options FollowSymLinks
AllowOverride None
Order deny,allow
deny from all

改成


Options FollowSymLinks
AllowOverride None
#Order deny,allow
#deny from all

但是,我照做之后还是不行。

经过一番查找之后终于发现原来是我用的yii中本身有个.htaccess,这个文件当中定义了

deny from all

将它改成

allow from all

之后,就可以了。

人气教程排行