cd /etc/httpd/sites-list
sudo cp file.config file-cp.config
sudo vi file-cp.config
<VirtualHost *:80>
DocumentRoot "/var/www/html/folder name"
ServerName servername.com
ServerAlias www.servername.com
DirectoryIndex index.php index.html
<Directory "/var/www/html/folder name">
Options All
AllowOverride All
Allow from all
</Directory>
</VirtualHost>
sudo service httpd reload
0 comments:
Post a Comment