Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Our site contains href links to various subdomains: foo.mysite.com, bar.mysite.com. For testing purposes, I'd like to run the site on a completely different main domain name, and point to subdomains off the new domain name.

Rather than manually change all the links, I'd like to have only one version of the site with links that look like this:

<a href="foo.(window.location.hostname)/mypage?myparam=value">Link</a>

What's the simplest syntax for doing this?

I know I could write jQuery code to hijack links, but a simpler in-link syntax would be better.

share|improve this question
What about relative urls? – bfavaretto Jun 28 '12 at 16:54
Relative urls won't handle the subdomains. – ccleve Jun 28 '12 at 16:54
What server-side language are you using? – Fresheyeball Jun 28 '12 at 16:59
One subdomain uses Java, another PHP. Yes, I could do this server-side, but then all my pages would have to be dynamically generated. Some of them are plain .html. – ccleve Jun 28 '12 at 17:04

4 Answers

up vote 0 down vote accepted

Couldn't you use javascripts onclick event ? tpo do this :

<a href="#" onclick="javascript:window.location.href = 'foo.' + window.location.hostname + '/mypage?myparam=value';">Link</a>
share|improve this answer
@Trevor oh sry i didn't see you posted a similar idea =) , and why cant i comment on your answer ? – C5H8NNaO4 Jun 28 '12 at 17:14
This appears to be the most compact syntax, and answers the question most directly. – ccleve Jun 28 '12 at 17:24

You could try on click:

<a href="foo.{host}/mypage?myparam=value"
   onclick="this.href=this.href.replace('{host}', window.location.hostname)">Link</a>
share|improve this answer
Slick. Similar to my jQuery link-hijacking idea. – ccleve Jun 28 '12 at 17:11

Honestly, the easy way for such a simple, global testing change is to do a search/replace on your whole site. If you want to proceed with your plan, I would use a server side language such as PHP, if possible. It will be much more foolproof for what you want.

share|improve this answer

I've seen back-end systems use an ENV variable to make changes between production environments. For example, you would set an environment variable, like var ENV = 'live' or var ENV = 'production. You could then use that to define what subdomain to use.

var ENV = 'production';

// set subdomain based on ENV variable
var subdomain = 'bar';
if(ENV == 'production'){
   var subdomain = 'foo';
}

// modify every link to use the subdomain
$('a').each(function(){
  var modifyHref = 'http://' + subdomain + $(this).attr('href')
  $(this).attr('href', modifyHref);
});

I don't think you should be doing this on front-end JS though.

If subdomains are an issue, I would set all the paths to <a href="/mypage?myaparam=value">. That way, it won't matter what the subdomain. If you are on the foo subdomain, it will go to "foo.whatever/mypage?myaparam=value", and if you are on the bar subdomain, it will go to "bar.whatever/mypage?myaparam=value".

share|improve this answer
I agree with the relative paths. Only thing to notice is that, when referencing secure pages, you do need to add the https://<domain>/mypage part – Rodolfo Jun 28 '12 at 17:04
On doing it server-side: yes, it's possible, but it means all pages have to be dynamic. – ccleve Jun 28 '12 at 17:08
On relative urls: they don't work if the foo subdomain points to the bar subdomain. That's the core problem I'm trying to solve. – ccleve Jun 28 '12 at 17:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.