javasac Posted September 7, 2008 Share Posted September 7, 2008 Basically, I have a php application running on apache and want that any URL like x.abc.com [x can be anything] works. I can trap the URL and take action based on value of x. I came to know that entry in hosts file like *.abc.com does not work. Is there a way we can do it in apache? Tried this and other variations. <VirtualHost 127.0.0.1> DocumentRoot "c:/wamp/www/yojoe-web/html" ServerAlias *.abc.com RewriteEngine on RewriteCond %{HTTP_HOST} !^www.* [NC] </VirtualHost> Can someone please give me complete config? Thanks, Sachin Quote Link to comment https://forums.phpfreaks.com/topic/123086-apache-subdomain-setup/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.