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 a CentOS 5 server.

Apache is running well, but it doesn't redirect to specific directory.

here is the file

 <VirtualHost *:80>
ServerAdmin jake@gpons.com
ServerName gpons.com
ServerAlias www.gpons.com

DocumentRoot /mnt/storage/gpons.com
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>
<Directory /mnt/storage/gpons.com>
    Options FollowSymLinks MultiViews
    AllowOverride All
    Order Allow,Deny
    Allow from All
</Directory>

ErrorLog logs/gpon.com-error_log
LogLevel warn

It directs to /var/www/html/index.php file

Can you help to fix this issue?

share|improve this question
The use of ServerName implies you're doing name based virtual hosting. Do you have NameVirtualHost *:80 somewhere else in the config? – Michael Berkowski Mar 3 '12 at 15:04
also change <Directory /mnt/storage/gpons.com> to <Directory /mnt/storage/gpons.com/> (notice the trailing '/') – scibuff Mar 3 '12 at 15:07
also, make sure you restart/reload apache, e.g. sudo /etc/init.d/httpd reload – scibuff Mar 3 '12 at 15:08
Michael// Yeah I have NameVirtualHost *:80 in the config file – user1220351 Mar 3 '12 at 15:28
Scibuff// I changed the directory address like you suggested but it didn't work. – user1220351 Mar 3 '12 at 15:29

closed as off topic by middaparka, bmargulies, Michael Berkowski, casperOne Mar 5 '12 at 15:02

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.