Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have just installed centos, apache and php when I visit my site http://domain.com/myapp/, it says "forbidden" by default its not loading the index.php file.

When I visit http://domain.com/myapp/index.php, it works fine.

Any idea how to fix that issue ?

share|improve this question

4 Answers

up vote 21 down vote accepted

Apache needs to be configured to recognize index.php as an index file.

The simplest way to accomplish this..

  1. Create a .htaccess file in your web root.

  2. Add the line...

DirectoryIndex index.php

Here is a resource regarding the matter...
http://www.twsc.biz/twsc_hosting_htaccess.php

Edit: I'm assuming apache is configured to allow .htaccess files. If it isn't, you'll have to modify the setting in apache's configuration file (httpd.conf)

share|improve this answer
It should probably be in the php.conf file that apache loads. – staticsan Mar 5 '10 at 3:51
I think you mean php.ini. Regardless, his apache isn't recognizing index.php as a directory index file. Whether its handling php files is another apache config issue. – John Himmelman Mar 5 '10 at 4:25

At a guess I'd say the directory index is set to index.html, or some variant, try:

DirectoryIndex index.html index.php

This will still give index.html priority over index.php (handy if you need to throw up a maintenance page)

share|improve this answer
Mine looks like this but is unfortunately downloading the index.php instead of executing it. – Webnet May 3 at 13:46

While adding 'DirectoryIndex index.php' to a .htaccess file may work,

NOTE:

In general, you should never use .htaccess files

This is quoted from http://httpd.apache.org/docs/1.3/howto/htaccess.html
Although this refers to an older version of apache, I believe the principle still applies.

Adding the following to your httpd.conf (if you have access to it) is considered better form, causes less server overhead and has the exact same effect:

<Directory /myapp>
DirectoryIndex index.php
</Directory>
share|improve this answer
1  
thank you, this is what I was looking for – Mala Sep 1 '12 at 8:01
that's all fine and dandy if you have access to that file – Hayden Thring Mar 10 at 23:41

Try creating a .htaccess file with the following

DirectoryIndex index.php

Edit: Actually, isn't there a 'php-apache' package or something that you're supposed to install with both of them?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.