Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

after re-install the apache ant php , I meet a problem, only the php file in the root folder can access, the php file in the sub folder of root can not access.

I am using apache2.2 php4.3 and codeigniter php framework.

    #apache config
    <Location /gl>
    </Location>
    Alias /gl /mnt/deploy/hospital


when I put file in "http://.../gl/application/controllers/test1.php", the browser report 500 error, and I check the /var/log/apache2/error.log no php error find.

when I put file in "http://.../gl/test1.php" thing's ok.
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
225 views
Welcome To Ask or Share your Answers For Others

1 Answer

You have to tell apache who is allowed to access the alias.

Try

Alias /gl /mnt/deploy/hospital
<Directory "/mnt/deploy/hospital">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
    Order Deny,Allow
    Deny from all
    Allow from localhost 127.0.0.1

</Directory>

If you must, and you are not working on a local testing environment use :-

Allow from all

instead of

Allow from localhost 127.0.0.1

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...