Hi,
I search on this forum and google , but it's not help me to fix this issue. Please help me.
How to change file location of website to : /home/USERNAME/public_html/
my website is only show index.html in location : /usr/local/apache/htdocs/ with index.html file
Contents of File: /usr/local/apache/conf.d/vhosts.conf
# vhost_start mywebsite.com
<VirtualHost 128.199.xxx.xxx:82>
ServerName mywebsite.com
ServerAlias
www.mywebsite.comServerAdmin maxiinvest@gmail.com
DocumentRoot "/home/USERNAME/public_html"
ScriptAlias /cgi-bin/ "/home/USERNAME/public_html/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/USERNAME/mywebsite.com/*.conf
<IfModule mod_suexec.c>
SuexecUserGroup USERNAME USERNAME
</IfModule>
<IfModule mod_suphp.c>
suPHP_UserGroup USERNAME USERNAME
suPHP_ConfigPath /home/USERNAME
</IfModule>
<Directory "/home/USERNAME/public_html">
AllowOverride All
</Directory>
</VirtualHost>
# vhost_end mywebsite.com