Heim  >  Artikel  >  Datenbank  >  yii中访问出现的错误: You don't have permission to acces

yii中访问出现的错误: You don't have permission to acces

WBOY
WBOYOriginal
2016-06-07 15:43:011440Durchsuche

访问路径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

之后,就可以了。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn