subdomain

HTACCESS issue- domain vs subdomain.

I have got lots of ideas from google and stackoverflow- but none of those was exactly what i am looking for. here is scenario- I have bought a hosting space from a provider. I had to provide a domain name(let abc.com) as the primary domain of that hosting space. Then i have found that i have to put all the contents for that rimary doma...

CakePHP website mobile version

Hi, I have developped a full website with CakePHP framework and we'd like to make a very light version of the website for mobile devices (mainly iPhone/iPad). Is there a way to use the existing website with a new sub domain (for instance mobile.mywebsite.com) which will render specific views? I would like to avoid copying and simplifyin...

Rewrite subdomain

Obviously a pretty simple question: how do I rewrite (value1).example.com/(value2) to /(value1)/(value2) I've tried a couple of things without success. Thank you in advance. ...

domain and sub domain with different MX records

I am trying to segregate email address of my employees according to the geographic location. so i have thought of creating email with location information as [email protected] or [email protected] etc current setup: email hosting from 2 different service providers (godaddy and google apps) , one domain having hosting at godaddy, all ...

SubDomain Redirection Problem - IE

Does IE have Sub-domain Redirection Problem..... My Application has sub-domain concept. To Explain - For Example: abc12.test.in/view.aspx xyz14.test.in/view.aspx From "abc12" site, am Clicking "xyz14" site-URL, it redirects exactly with URL "xyz14.test.in/view.aspx" in new Window. But the contents corresponds to "abc12" site. Su...

Subdomain alias of subdomain

Hi Guys, On a Linux Plesk server I want the following: source-sub.domain.com Aliases: alias1.domain.com ->source-sub.domain.com alias2.domain.com ->source-sub.domain.com alias3.domain.com ->source-sub.domain.com So I want several subdomains to point to the source sub domain. How do I do this? Can I make a symlink or something? ...

django caching multi domain subdomain (wildcard) problem

I've got strange issue - I hope someone run similar problem before. I'm trying to cache content from different subdomains connected via wildcard to my django application: poczta-online.com . So when I get to krakow.poczta-online.com i run differend code in view than poczta-online.com - simple middleware for that like here: http://stack...

Dynamic Subdomain PHP

Okay, this might have been answered before but apparently up until now I still haven't found the answer. You may notice there are some websites that may allow users to register to instantly get a subdomain of their own in the website. For example, the domain is www.domain.com. If I register a new user as henson, I will get my own page ...

.htaccess Redirect from subdomain to domain

I've tried a bunch of examples here on SO and modifed them, but none are exactly what I need and as a result either fail with 500 server errors (meaning the rewrite rules are wrong) or redirect just the subdomain to the domain and not any of the full URLs of pages. I need to redirect all URLs under blog.mydomain.com to www.mydomain.com/...

I have multiple accounts each its own users, and want the users email address to only be unique per account

Hi, I am using rails to build a web app which provides each business with its own account and subdomain, Similar to how basecamp (and other 37 signals apps) lighthouseapp.com, and so on. Now I know that there are lots of decent tutorials on how to do subdomains in rails, and even the subdomain-fu plugin. The thing is that I want to us...

Apache wildcard at domain level

Hi, I have few sites, and they all have identical setup on a single server. Now, instead of the separate configuration file for each of them in sites-enabled directory, I want to have a common file. Idea is this: www.abc.com should have /var/www/abc as DocumentRoot, www.xyz.com should have /var/www/xyz as DocumentRoot, etc. Al...

each user their own subdomain

Possible Duplicate: How to let PHP to create subdomain automatically for each user? How do i set up so that each member on my community site get their own username? i run WAMP i understand i have to set wildcard subdomain in vhost.conf something, and then $_server['http_host'] to find out which member profile to display? Is...

use localStorage across subdomains

I'm replacing cookies with localStorage on browsers that can support it (anyone but IE). The problem is site.com and www.site.com store their own separate localStorage objects. I believe www is considered a subdomain (a stupid decision if you ask me). If a user was originally on site.com and decides to type in www.site.com on her next vi...

Firefox SVG from subdomain

I have a stylesheet that accesses an svg in the same directory as the stylesheet. Firefox will get the svg on my test server and on the subdirectory. However, it refuses to attempt to download the svg when accessed from the subdomain. I tried adding svg to the list of files in an .htaccess file on the subdirectory's highest level, which...

create subdomains only through a php file ?

wo, is there a way to create subdomains only through a php file ? like create a function call createsubdomain($username) or something? that would really be helpful in the sense that as soon as a user registers himself on a website, he gets to access hisname.thewebsite.com to access his full profile thanks for replues equatorlounge.wo...

Get Visual Studios to use subdomain?

While writing an asp.net project i may have this url for testing/debugging http://localhost:1234/ I have code that takes in account of subdomains. Can i make visual studios call the same code with http://anysub.localhost:1234/ ...

RewriteRules repeating part of the match

What I'm trying to achieve is trying to match both the subdomain and the full path in order to redirect to a version without www. in front of it. To do so I use: RewriteCond %{HTTP_HOST} ^www\.(.+).mydomain.com$ [NC] RewriteRule ^(.*)$ %{HTTP_HOST}%{REQUEST_URI} [C] RewriteRule ^www\.(.+)\.mydomain\.com/(.*)$ http://$1.mydomain.com/$2 ...

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 :cookie_store, :key => '_my_key', :domain => "mydomain.com" in Rails 3, what does the setting :domain => :all do? It can't let you share sessions ac...