Tagged Questions
Subdomain is a domain which is a part of a larger domain. For example, 'sub.example.com' is subdomain of 'example.com' domain.
24
votes
4answers
2k views
In a django web application, how do you give users their own subdomain?
I'm starting a new web app project using Django and Pinax. I want to be able to give my users unique domain names like Wordpress and other sites do : username.wordpress.com. I'm not sure how to ...
23
votes
9answers
5k views
When should one use a 'www' subdomain?
When browsing through the internet for the last few years, I'm seeing more and more pages getting rid of the 'www' subdomain.
Are there any good reasons to use or not to use the 'www' subdomain?
22
votes
8answers
7k views
Get the subdomain from a URL
Getting the subdomain from a URL sounds easy at first.
http://www.domain.example
Scan for the first period then return whatever came after the "http://" ...
Then you remember
...
21
votes
5answers
3k views
Redirect 'myapp.com' to 'www.myapp.com' in rails without using htaccess?
Using Morph Labs' Appspace to deploy a site means no automated way to redirect 'myapp.com' to 'www.myapp.com' (and no access to .htacess).
Is there an in-rails way to do this? Would I need a plugin ...
19
votes
8answers
1k views
Should I default my website to www.foo or not?
Notice how the default domain for stackoverflow is http://stackoverflow.com and if you try to goto http://www.stack.... it bounces you to http://stack... ?
What is the reason for this? Not the tech ...
19
votes
9answers
17k views
How to let PHP to create subdomain automatically for each user?
How do I create subdomain like http://user.mywebsite.com ? Do i have to access htaccess somehow? Is it actually simply possible to create it via pure php code or I need to use some external ...
16
votes
5answers
10k views
HTML5 localStorage restrictions and limits
HTML5's localStorage databases are usually size-limited — standard sizes are 5 or 10 MB per domain. Can these limits be circumvented by subdomains (e.g. example.com, hack1.example.com and ...
15
votes
2answers
3k views
Working with subdomain in google app engine
How can I work with sub domain in google app engine (python).
I wanna get first domain part and take some action (handler).
Example:
product.example.com -> send it to ...
15
votes
10answers
39k views
How do I get a list of all subdomains of a domain? [closed]
I want to find out all the subdomains of a given domain. I found a hint which tells me to dig the authoritative Nameserver with the following option:
dig @ns1.foo.bar some_domain.com axfr
But this ...
14
votes
11answers
4k views
Does a “blog” sub-domain help the pagerank of your main site?
I have my main application site https://drchrono.com, and I have a blog sub-domain under http://blog.drchrono.com. I was told by some bloggers that the blog sub-domain of your site helps the pagerank ...
13
votes
10answers
1k views
Public Wildcard Domain Name To Resolve To 127.0.0.1
Is anyone aware of a public wildcard domain name that resolves to IP address 127.0.0.1. For example if I wanted to test a URL locally such as mywebsite.localhost.com or example.localhost.com but I ...
12
votes
0answers
485 views
Why insert static files ( css, images, js, ecc ) in a subdomain? [migrated]
Why so many big and little sites inserts static files ( css, images, js, ecc ) in a subdomain like media.example.com or s2.static.example.com ?
What are the advantages ?
Why not just a directory ...
12
votes
4answers
8k views
AJAX, Subdomains, and SSL
I have a site, foo.com, that makes ajax requests to bar.foo.com. Will this work.
Also, if foo is a secure connection, https, does bar.foo.com need to be https too? Can these two sites use different ...
11
votes
3answers
3k views
What does Rails 3 session_store domain :all really do?
Updated question to make it more clear
I understand that you can set the domain of your session_store to share sessions between subdomains like this: Rails.application.config.session_store ...
10
votes
4answers
1k views
Can Areas in an ASP.NET MVC 2 application map to a subdomain?
Is there a way to map the Areas within an ASP.NET MVC 2 application to subdomains such as
movies.example.com/Theater/View/2
instead of
example.com/Movies/Theater/View/2
where { area = "Movies", ...
9
votes
4answers
1k views
Rails Restful Routing and Subdomains
I wondered if there were any plugins or methods which allow me to convert resource routes which allow me to place the controller name as a subdomain.
Examples:
map.resources :users
map.resource ...
9
votes
2answers
2k views
Rails rspec set subdomain
I am using rSpec for testing my application. In my application controller I have a method like so:
def set_current_account
@current_account ||= Account.find_by_subdomain(request.subdomains.first)
...
9
votes
13answers
7k views
PHP Getting Domain Name From Subdomain
I need to write a function to parse variables which contain domain names. It's best I explain this with an example, the variable could contain any of these things:
here.example.com
example.com
...
9
votes
5answers
10k views
Wildcard Subdomains
I know there have been a few threads on this before, but I have tried absolutely everything suggested (that I could find) and nothing has worked for me thus far...
With that in mind, here is what I'm ...
9
votes
4answers
2k views
How to make subdomain user accounts in a webapp
I am looking to allow users to control of subdomain of an app I am toying with, much like Basecamp where it is 'customusername.seework.com'.
What is required on the DNS end to allow these to be ...
8
votes
2answers
123 views
Problems trying to create a cookieless domain due to Adsense
Following the advice on google's pagespeed addon, I moved my static content (images, css, javascript files) to a subdomain of my site on which there should be no cookies, thus saving some space in the ...
8
votes
3answers
166 views
Configuring subdomains in Eclipse PDT & xDebug
I'm trying to set up a local environment for developing and testing an existing PHP application.
I've chosen Eclipse PDT as my IDE and xDebug as the debugging module. When testing individual files on ...
8
votes
3answers
2k views
MVC 3 Subdomain Routing
In asp.net MVC 3 site i'd like to create online stores for users.
Any store that is created by user should have a URL like "shopname.mydomain.com".
I tried some routing work but failed at all. I am ...
8
votes
3answers
718 views
Hosting images on separate sub domains
My company hosts about 30 web sites all sharing the same code base and reusing many of the same images. Right now, the images for all of the sites are hosted on the one domain, and then every other ...
7
votes
9answers
799 views
subdomain vs. subdirectory in web programming
There are two main strategies for handling multiple "applications" on the web:
subdomains (e.g. wiki.example.org, blog.example.org, admin.example.org, api.example.org/v1)
subdirs (e.g. ...
7
votes
2answers
2k views
Google Analytics cookies vs subdomain for static content
I have a website on www.example.com and use Google Analytics. I've also set up static.example.com which serves all static content.
The problem is that the default behavior of GA is to issue cookies ...
7
votes
5answers
3k views
Multiple subdomains with SSL under IIS
I currently need to have 2 subdomains under the same domain under SSL.
Both subdomains (www and affiliate) are on the same IIS server, under the same IP, and each one has specified a host header value ...
6
votes
1answer
127 views
.htaccess subdomain argument not accessible in query string
I have written the following rules in .htaccess
RewriteCond %{HTTP_HOST} ^([^\.]+)\.domain\.com
RewriteCond %1 !^www$ [NC]
RewriteCond %{REQUEST_URI} ^/news/news-details\.php$
RewriteRule (.*) ...
6
votes
6answers
555 views
Testing subdomain constrained routes in Rails 3
I'm testing my Rails applications with Test::Unit. A problem I often come across is testing my application's routes for which I haven't found a solution yet.
At the moment, I'm working on an ...
6
votes
3answers
2k views
Forms Authentication ReturnUrl and subdomain for single sign-on
I have a domain http://abc.com and a subdomain http://sub.abc.com. I'm implementing single sign-on between the two sites by sharing the forms authentication cookie. This is implemented by having both ...
6
votes
3answers
406 views
Is it at all possible to use Google App Engine with a naked domain?
I am working on a site for which I really want to be able to use a naked domain, e.g. example.com. Preferably, www.example.com should redirect to example.com, but that is not strictly necessary.
If I ...
6
votes
3answers
261 views
Where do two 2-D arrays begin to overlap each other?
I'm working with model output at the moment, and I can't seem to come up with a nice way of combining two arrays of data. Arrays A and B store different data, and the entries in each correspond to ...
6
votes
2answers
933 views
Dynamic subdomains in asp.net mvc
I am fairly new to asp.net, and have little experience with iis. I would like to have each user of my application get their own sub-domain, but all use the same controllers. The subdomain would then ...
6
votes
6answers
2k views
Why ww2 sub domains?
I have seen on the web some domain names having prefix of ww2 or ww3 or so (ww2.somedomain.com, ww3.yourdomain.com). And these happen mostly when travelling from a page to page. What would be the ...
6
votes
3answers
2k views
ASP.NET MVC - cross sub domain authentication/membership
Hit a roadblock while implementing a sub domain based language switcher (en.domain.com loads English, jp.domain.com loads Japanese).
How do I get a single membership system to work across multiple ...
6
votes
7answers
15k views
Cross domain cookie access (or session)
While I realise that this is usually related to cross site scripting attacks, what I'm wondering is how can a session remain valid throughout multiple subdomains belonging to a single domain (example: ...
6
votes
3answers
13k views
Free DNS server for Windows XP/Vista/Win7?
I'm currently developing a security solution that should work across domains and as such I need a small private dns server to add various entries to. I could alter the hosts file to achieve the same ...
5
votes
1answer
119 views
Apache rewrite from subdomain to www but keep all permalinks
I've researched this for about 2 hours now and although most of the topics are similar, none have explained how to do what I'd like to do.
I'm taking a blog that had a structure of blog.domain.com ...
5
votes
4answers
495 views
Google App Engine and domain name
Here is the situation:
I own a Google Apps for Business account.
I have two domain names registered :
mycompany.com which is the principal domain
myapp.com which is another domain
Note: both ...
5
votes
2answers
388 views
Change the document root of a parked domain?
I have run into a problem which is that my web host doesn't appear offer addon domains.
I currently have a domain name pointing to my name servers.
I went into cPanel to add an addon domain that ...
5
votes
1answer
275 views
Are Rails 3 Subdomains Fairly Painless?
I have an app with two sections, Buyers and Sellers. The main section '/' is for Buyers, but I have a separate Sellers portal that I'm currently placing in /sellers. Might be nicer to move the sellers ...
5
votes
4answers
993 views
Regex to match Domain.CCTLD
Does anyone know a regular expression to match Domain.CCTLD? I don't want subdomains, only the "atomic domain". For example, docs.google.com doesn't get matched, but google.com does. However, this ...
5
votes
4answers
1k views
Symfony dynamic subdomains
I'm trying to match subdomains to a customer id in symfony.
i.e. i have customer1.example.com and customer2.example.com
Domains are stored in a table.
When a user goes to customer1.example.com, I ...
5
votes
1answer
201 views
Creating subdomains on the fly
When one signs up for Blogger or WordPress, one gets very own subdomain that works instantly. How can do like that given I have my own VPS/VDS/Dedicated server?
5
votes
1answer
2k views
Asp.net mvc 301 redirect from www.domain.com to domain.com
We have a website at domain.com, which is also accessible via a CNAME entry for www.domain.com that points back to domain.com. We'd like all visitors to www.domain.com to be redirected to domain.com ...
5
votes
1answer
600 views
Subdomains and locally installed Rails app
I can't figure out what I'm overlooking, perhaps it's obvious or lack of understanding.
The app I'm working with uses subdomains which on the hosting server work properly. I figured locally ...
5
votes
4answers
209 views
creating sub-domains on signup
I'm building a site where businesses will be able to sign-up for there own account which should be located at http://businessname.domain.com with the "businessname" changing each time.
I want to do ...
5
votes
5answers
1k views
How to setup sub-domains like blogspot
What should do to setup a sub-domain for the users when they sign-up into my site.
What are the infrastructure required? I am using Linux servers.
5
votes
3answers
9k views
Subdomain on different host [closed]
I'm trying to host a subdomain for my site with a different hosting company and I'm running into issues on how to set it up.
Here are the specifics:
- Domain is registered with GoDaddy.
- ...
4
votes
1answer
79 views
subdomain redirection in htaccess [closed]
I was wondering if the following scenario is possible using htaccess rules.
I want one subdomain to be redirected to another url.
I have contact the server admin to add the "test" subdomain to ...