Questions tagged [multiple-domains]

A multiple-domain account usually allows you to distribute your disk space/transfer over as many domain names as you want (or can).

If you have for example 5 websites then it is usually more economical to get one multi-domain account to put them all under then get 5 single domain accounts.

261 questions
2
votes
1 answer

Merge Facebook applications into one

Facebook just announced support for multiple app domains (read the post here) in their applications. We're having multiple applications since our website is localized, but now, with this new feature, we'd like all these applications to be merged…
rkj
  • 556
  • 5
  • 13
2
votes
1 answer

Hosting Multiple Domains on Same Server Port with Apache2

How do I configure Apache2 via webmin or command-line (I'm using RHEL5 Linux) so that I can have multiple domains on the same server on the same port but in different subdirectories? For instance, trying to get homerentals.ws and homerepair.ws to be…
Jack Indigo
2
votes
4 answers

How to share session among Multiple Domains on single asp.net website?

I want to share session cookie among domains. I have more than one domain: - 1. mydomain.com 2. mydomain.fr 3. mydomain.de 4. mydomain.da ...and many other language based Now, I have single website deployed on a server. I want to share session…
Waqas Raja
  • 10,802
  • 4
  • 33
  • 38
2
votes
2 answers

How to implenent NameCheap DNS with Netlify and Heroku

So I want to host my front-end React app on Netlify and I want it to be at www.mydomainname.com. I also want to host my back-end on Heroku and I want it to be at api.mydomainname.com. The problem is that if I set NameCheap DNS settings to use…
crodev
  • 1,323
  • 6
  • 22
  • 39
2
votes
1 answer

Facebook C# SDK Authentication - How to Handle Multiple "Apps" In One Application?

I've got my ASP.NET MVC 3 Web Application up and running with the Facebook C# SDK. Following the instructions here, it seems as though once you put in the AppId / Secret in the web config section instructed, that is the settings pulled back when…
RPM1984
  • 72,246
  • 58
  • 225
  • 350
2
votes
1 answer

Multi-domain setup for one root in TYPO3 9.5?

I have problem configuring my old site which I upgraded to 9.5. I had multidomain setup using landing pages with one root (home) using typoscript. There is a new module Sites, but there i can put only one domain, i can put other in list module but…
2
votes
1 answer

How do I test multiple domains setup in AppEngine locally?

In the question Working with subdomain in google app engine, the following code was suggested. applications = { 'product.example.com': webapp.WSGIApplication([ ('/', IndexHandler), ('/(.*)', ProductHandler)]), 'user.example.com':…
Albert
  • 3,611
  • 3
  • 28
  • 52
2
votes
1 answer

Individual domain cache invalidation AWS CloudFront

I have CloudFront distribution with multiple domains. As example all domains like .mydomain.com caching in my distribution. And now I have problem with invalidation. I can't set invalidation path like this one.mydomain.com or…
2
votes
1 answer

How do I implement multiple login/logout-domains, single main domain in ASP.NET and forms authentication?

I want to have several domains A, B, C where a user can enter his username and password to login to a common main domain D. So the user goes to A, B or C, enters his username and password, clicks the "login" button, and is then on the main domain D…
tomsv
  • 7,207
  • 6
  • 55
  • 88
2
votes
1 answer

Dual Domain - Works for child pages but not homepage

I have a main site - something.com Some other domains have A records in the DNS to point to the one above. something.co something.nl I have this in my wp-config: /* * Handle multi domain into single instance of wordpress installation …
2
votes
1 answer

same base code for multiple domains/websites

What we did We have been assigned multiple projects in past few months. And we noticed that many function like Login, Registration, uploading picture, reset password, user profile and many more... were common for all these different websites.…
Digvijay
  • 7,836
  • 3
  • 32
  • 53
2
votes
1 answer

Hosting multiple websites on AWS using route 53 and one instance

I have two domains on the same instance. I've already configured the httpd.conf as follow: ServerAdmin webmaster@dropcash.com.br ServerName dropcash.com.br DocumentRoot "/var/www/html/dropcash.com.br" ErrorLog…
2
votes
4 answers

Redirect Multiple Domains with Same IP Address

Our company has for many years had multiple domain names to protect our product name. When our webiste was first set up we had all these domain names resolving to on IP address which worked fine until now. We rewrote the site with ASP.NET MVC and…
awilinsk
  • 2,054
  • 6
  • 31
  • 50
2
votes
1 answer

SendGrid Parse Inbound email from multiple domains

Currently I'm thinking to work with SendGrid and I have an issue. I want to Know if I can parse incoming emails from multiple domains. I read the documentation from Parse Webhook Settings, and I only see just one domain. So, is there a way to…
ismaestro
  • 7,561
  • 8
  • 37
  • 50
2
votes
1 answer

Grails - createCriteria from if and else with null property

I am using Grails 2.3.4. I am trying to retrieve a domain object with specific criteria, however I have trouble getting around when the properties are null. Here is an example. class Domain1 { int locationId Domain2 domain2 Domain3 domain3 …