Wildcard subdomains are useful to allow end users of a domain-based multisite network to create new sites on demand. In this type of network each new site has its own subdomain, and the wildcard configuration means that those subdomains do not have to be configured individually.
Questions tagged [wildcard-subdomain]
456 questions
2
votes
1 answer
pointing domain to wildcard sub sub domain
I have a multisite wordpress install at plataforma.vendamais.pt
And I have a wildcard for *.plataforma
So all new sites created have this url:
client01.plataforma.vendamais.pt
client02.plataforma.vendamais.pt
and so on.
I need to connect my…

rfmarchetti
- 43
- 1
- 7
2
votes
0 answers
Wildcard domain on vagrant laravel
I want that my laravel 5.1 accept wildcard domains.
I'm not the first one to ask this, but all other configurations I tried never worked, so maybe I' doing something wrong.
In my Bind zone file, I have:
*.domain.tld
In my Apache, I…

Alucard
- 1,814
- 1
- 21
- 33
2
votes
0 answers
How do I use wildcard subdomains with Azure websites deployment slots?
I really like the swapping of deployment slots feature of Azure websites for release management. But I am unsure as to use it for my current configuration.
I have wildcard subdomains in my site and users’ authenticated sessions are persisted across…

Jason
- 21
- 1
2
votes
2 answers
Apache 2.4 Wildcard Subdomain Virtual Host
My goal is to have the following occur, when the user visits the sites below to the left it takes them to the directories on the right:
www.example.com or example.com => /var/www/example/public_html/
*.example.com =>…

Popcorn245
- 577
- 6
- 14
2
votes
2 answers
Setting up custom domains (with subdomains) on Google App Engine with SSL with different versions of app
Problem I want to solve
I want to be able to send different users to different versions of my Google App Engine application, on a custom domain, with SSL enabled. This needs to be done in a controlled way, i.e., even landing page should be…

patrik
- 123
- 8
2
votes
1 answer
Laravel 4.2 User Authentication Across Subdomains on Server
Authentication persists nicely across my subdomains on my localhost thanks to help I received here. But now I'm having trouble my remote server. I changed 'domain' => '.mydomain.com', in session.php and now I can't log in at all. Actually,…

sterfry68
- 1,063
- 2
- 14
- 30
2
votes
1 answer
Google App Engine custom domains, subdomains and SSL
I'm looking to give my GAE app a custom domain. Would I still be able to use wildcard subdomains in the same way I am now with the myapp.appspot.com domain?
For example, if I navigate to wildCardSub.myapp.appspot.com I am able to grab the wildcard…

Guy
- 876
- 1
- 10
- 28
2
votes
2 answers
Rails namespace admin on custom subdomain
My rails app is set to use subdomains as described in this RailsCast:
http://railscasts.com/episodes/221-subdomains-in-rails-3
Now, I would like to add an admin subdomain to the front of my blog subdomain as follows:
admin.company.lvh.me:3000
I've…

bigLund8
- 119
- 1
- 10
2
votes
0 answers
Unlimited sub domains
I'm currently setting up a webshop system and was thinking about making subdomains for these users. As I have done this a few times in the past I started of with the same code but for some reason it's not working out. Maybe someone here can shed…

user1664
- 481
- 1
- 7
- 6
2
votes
2 answers
Using wildcard subdomain on specific directory
I am setting up an existing wordpress install to use multisite. I have successfully set up the network and since it was an existing install it uses subdomains (which I wanted anyways).
I have created a new site/subdomain on my network so it would…

Anthony Russo
- 913
- 4
- 13
- 31
2
votes
1 answer
How to make all *.mysite.com subdomains to hit my servlet
We have a web application, say mysite.com.
Now users can come and create pages like, mysite.com/page/mypage. Here 'mypage' is unique identifier for the page he/she has created. So whenever mysite.com/page/mypage url is requested, it hits our…

sachinaero
- 205
- 1
- 3
- 7
2
votes
1 answer
Creating SubDomain for an account on registration with iis7 asp.net
I am digging from 3 days all over the Stackoverflow and google. I am not getting any exact steps, how to accomplish it... I read all these questions on stackoverflow, many person asked this same question and not got exact Steps to do this…

JSB
- 215
- 5
- 16
2
votes
1 answer
unable to map subdomain in local host webserver
I am developing a web application using Asp.net mvc framework with concept of sub domain for community.
I have implement concept of wild card mapping of domain like *.example.com. To test concept in vs 2008 i edited hosts file and add some sub…

Vivek
- 570
- 8
- 21
2
votes
1 answer
Wildcard sub.domain.tld redirect to domain.tld/sub
I currently have a wild card subdomain with this on apache:
DocumentRoot /home/web/domaine.tld/www
ServerName domaine.tld
ServerAlias *.domaine.tld
VirtualDocumentRoot /home/web/domaine.tld/%1
…

bl0b
- 926
- 3
- 13
- 30
2
votes
1 answer
Proxy all subdomains of one domain to another, using Apache
I am trying to build a reverse proxy using Apache.
My goal is to proxy all requests of the form .domain.com/file.html to www.domain.com//file.html.
I somehow need to capture the of the original URL and use it to…

Charalambos Paschalides
- 490
- 1
- 6
- 13