amazon web services - Bitnami Multiple sites redirecting to One site -
i new bitnami/apache/aws , have been assigned figuring out why 3 of our sites redirecting 1 specific site. have spent countless hours on , think have narrowed down app.conf files. when try access /wp-admin or /administrator urls take me other site. here 2 of app.conf files. let me know if looks out of place. in advance.
main site others redirecting to
<virtualhost *:80> documentroot /opt/bitnami/apps/www.blueleafdef.com/htdocs servername blueleafdef.com serveralias www.blueleafdef.com serveralias blueleafdefr.uat.ignitedev.com errorlog /opt/bitnami/apps/www.blueleafdef.com/log/error.log customlog /opt/bitnami/apps/www.blueleafdef.com/log/access.log common <directory "/opt/bitnami/apps/www.blueleafdef.com/htdocs"> options +indexes +followsymlinks -multiviews allowoverride order allow,deny allow </directory> </virtualhost>
one example of other site
<virtualhost *> documentroot /opt/bitnami/apps/www.fuelsnews.com/htdocs servername www.fuelsnews.com:80 serveralias www.fuelsnews.com errorlog /opt/bitnami/apps/www.fuelsnews.com/log/error.log customlog /opt/bitnami/apps/www.fuelsnews.com/log/access.log common <directory "/opt/bitnami/apps/www.fuelsnews.com/htdocs"> options indexes multiviews allowoverride order allow,deny allow </directory> </virtualhost> <virtualhost *> documentroot /opt/bitnami/apps/www.fuelsnews.com/htdocs servername fuelsnews.com:80 serveralias fuelsnews.com errorlog /opt/bitnami/apps/www.fuelsnews.com/log/error.log customlog /opt/bitnami/apps/www.fuelsnews.com/log/access.log common <directory "/opt/bitnami/apps/www.fuelsnews.com/htdocs"> options indexes multiviews allowoverride order allow,deny allow </directory> </virtualhost> <virtualhost *> documentroot /opt/bitnami/apps/www.fuelsnews.com/htdocs servername fuelsnewsr.uat.ignitedev.com:80 serveralias fuelsnewsr.uat.ignitedev.com errorlog /opt/bitnami/apps/www.fuelsnews.com/log/error.log customlog /opt/bitnami/apps/www.fuelsnews.com/log/access.log common <directory "/opt/bitnami/apps/www.fuelsnews.com/htdocs"> options indexes multiviews allowoverride order allow,deny allow </directory> </virtualhost>
use below , restart apache work.
<virtualhost *> documentroot /opt/bitnami/apps/www.fuelsnews.com/htdocs servername www.fuelsnews.com serveralias fuelsnews.com errorlog /opt/bitnami/apps/www.fuelsnews.com/log/error.log customlog /opt/bitnami/apps/www.fuelsnews.com/log/access.log common <directory "/opt/bitnami/apps/www.fuelsnews.com/htdocs"> options indexes multiviews allowoverride order allow,deny allow </directory> </virtualhost> <virtualhost *> documentroot /opt/bitnami/apps/www.fuelsnews.com/htdocs servername fuelsnewsr.uat.ignitedev.com serveralias fuelsnewsr.uat.ignitedev.com errorlog /opt/bitnami/apps/www.fuelsnews.com/log/error.log customlog /opt/bitnami/apps/www.fuelsnews.com/log/access.log common <directory "/opt/bitnami/apps/www.fuelsnews.com/htdocs"> options indexes multiviews allowoverride order allow,deny allow </directory> </virtualhost>