My ISP is providing me a user dns like "user".ddns."providersite.com". I made "img" subdomain on localhost. I`ve edited the win host file, adding
127.0.0.1 img.localhost
and I`ve added this to the apache virtual host
<VirtualHost *:80>
ServerName img.localhost
DocumentRoot "C:/www/web/img"
DirectoryIndex index.php index.html index.htm index.shtml
</VirtualHost>
So can I make ot work on the internet - img."user".ddns."providersite.com" ? Is it even possible ?