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?
ServerNameimplies you're doing name based virtual hosting. Do you haveNameVirtualHost *:80somewhere else in the config? – Michael Berkowski Mar 3 '12 at 15:04<Directory /mnt/storage/gpons.com>to<Directory /mnt/storage/gpons.com/>(notice the trailing '/') – scibuff Mar 3 '12 at 15:07sudo /etc/init.d/httpd reload– scibuff Mar 3 '12 at 15:08