Questions tagged [wildcard-subdomain]

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.

456 questions
2
votes
2 answers

wildcard for local dev hosts

I am switching between multiple projects recently. All running locally on the same IP but with different domains... actually it's always *.local (like foo.local, bar.local and so on). I could continue adding those to my /etc/hosts file but it's not…
Tomasz Kapłoński
  • 1,320
  • 4
  • 24
  • 49
2
votes
0 answers

How does App-Engine disambiguate custom domains with wildcards?

If I add a custom domain like *.example.com to my app-engine project, I can then selectively add CNAMEs to that domain pointing to ghs.googlehosted.com to forward subdomains to this project, which will then identify versions in the project. For…
2
votes
1 answer

Apache Redirect Wildcard sub- subdomain to subdomain

I am currently working on an application which was build to work with wildcard subdomains. For Example: customer1.domain.com customer2.domain.com So we bought a wildcard SSL Certificate for *.domain.com and redirected all subdomains from http to…
2
votes
1 answer

Sub-domain's Route Name

My web.php looks like Route::group( [ 'domain' => '{tenant}.' . config('app.url'), ], function () { $this->get('/', 'HomeController@index')->name('home'); } ); My HomeController looks like /** * Show the…
Sagar Chamling
  • 1,038
  • 1
  • 12
  • 26
2
votes
2 answers

Mailgun: wildcard subdomain "from-address" for SaaS

I've a small SaaS where each client gets a subdomain (stackexchange.my-saas.com) I've a mailgun account where my main domain is setup and I've created a wildcard SPF record in my DNS and if I add additional domains to my mailgun account with a…
Emil Devantie Brockdorff
  • 4,724
  • 12
  • 59
  • 76
2
votes
0 answers

apache cyrillic wildcards in virtualhost config

there is a question. I have project with many subdomains and it is configured like this: VirtualHost1: ServerAlias a*.example.com VirtualHost2: ServerAlias b*.example.com VirtualHost3: ServerAlias c*.example.com It works very good. And now I need…
2
votes
2 answers

How do I configure WinCE to use wildcard SSL certificates?

Our Windows CE 5.0 application has a problem with our wildcard SSL certificate (*.domain.com) - it won't accept it as valid. I understand that Windows Mobile 6.0 has support for wildcard certificates (earlier versions don't) and that is built on…
Robin Minto
  • 15,027
  • 4
  • 37
  • 40
2
votes
1 answer

Getting wildcard subdomain with Spring @RequestMapping

I'm wondering if it's possible to get access to a subdomain with Spring's @RequestMapping when the subdomain is a wildcard. For example, I'd like to write one method that will be called when any number of subdomains are requested, and also have the…
Trevor
  • 1,137
  • 1
  • 19
  • 33
2
votes
4 answers

Apache - subdomains, mod_rewrite and virtualdocumentroot

Can anyone suggest how can I achieve the following (I couldn't cook a solution using either mod_rewrite or virtualdocumentroot):: 1) Allow any subdomain on my website, (*.mysite.com should not give 404 error) AND 2) Ensure that the URL that the…
2
votes
0 answers

http and https redirect to different link with wildcard subdomain

I am deploying a PHP web application into a linux server for my client. Their linux webserver allows wildcard subdomain, the server have SSL on. I have set up the virtualhost for the wildcard subdomain and no problem occurs, the problem is when i…
2
votes
1 answer

Redirect subdomain and path to main domain with same path

I have recently stopped using a subdomain for my blog, i need to forward all links that use that domain to the same link path but on my main domain. Example being: blog.example.com/blog/sales/blog-title needs to redirect to…
2
votes
1 answer

How to write a subdomain with htaccess?

I am trying to make a subdomain forward through the htaccess document. The below instructions will forward http://sub.domain.com to the internal structure Root > subfolder > index.php. This all works well. # REWRITE DEFAULTS #…
Mark
  • 16,906
  • 20
  • 84
  • 117
2
votes
1 answer

Is there a way to auto generate sub domains in Meteor JS

I would like to give the user a sub domain with their user name when they sign up. Example is a user with josh sign up, I would like to give him a sub domain josh.example.com where his profile is visible. Is this possible in meteor js?
2
votes
0 answers

Adding Wildcards to Forge Server later

When I created a server using Laravel Forge, I didn't provision it with wildcards at inception. I would like to add wildcards now, while the server is running. Can this be done?
user3691644
  • 477
  • 3
  • 7
  • 18
2
votes
1 answer

Create subdomain for each user that signs up

I am developing a project in Coldfusion with CFWheels MVC Framework with URL Rewriting enabled. It involves user registration and each user should be presented as username.domain.com instead of www.domain.com/users/username. Moreover once I am on…
Alfredo
  • 21
  • 1