I have 3 sample domains and would like to converting this .conf to .htaccess so that I don't have to restart my Apache all the time once I've updated my subdomain settings.
NameVirtualHost *:80
<VirtualHost *:80>
ServerName www.myserver.com
DocumentRoot /www
</VirtualHost>
<VirtualHost *:80>
ServerName marhazk.myserver.com
DocumentRoot /www/marhazk.com
</VirtualHost>
<VirtualHost *:80>
ServerName perfectworld.myserver.com
DocumentRoot /www/perfectworld.com
</VirtualHost>
Any idea how?