カスタム JavaScript を使用してすべてのサブドメインと外部ドメインを 1 つのドメインにまとめるサイトがあります。それはすべて働いています。ただし、メイン ドメインは参照として表示され、ページ フローを壊しています。
IIS で ISAPI ReWriter を使用して、「example.com」へのすべてのトラフィックを「www.example.com」に 301 リダイレクトします。
次に、内部と外部の両方のすべてのサイトで、同じユニバーサル コードを使用して、ドメインを設定するか、リンクをプッシュするかを決定します。
質問: 1) サブドメイン blog.example. com、store.example.com、etc.example.com?
2) ISAPI ReWrite を使用する代わりに、IIS の example.com サイトを www.example.com にリダイレクトするとどうなるでしょうか?
3) example.com が紹介として表示されるのはなぜですか? どうすればそれを止めることができますか?
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXETC']);
var locText = window.location.host;
// vars to check domain
var exampleDomain = new RegExp('www.example.com', 'i');
var exampleRedirect = new RegExp('^example.com', 'i');
//check if we are on the main domain
if(exampleDomain.test(locText) || exampleRedirect.test(locText)){
//Roll Up (domain and subdomains)
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_setDomainName', '.example.com']);
} else {
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_addIgnoredRef', window.location.host]);
_gaq.push(['_setAllowLinker', true]);
}
_gaq.push(['_trackPageview']);
(function() {
// load the ga.js file. This happens last now.
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
// this function is an exclusion blacklist of sites we don't want to push
function donotpushlinks(linkpattern)
{
var blacklist = [
"twitter"
,"facebook"
,"tumblr"
,"youtube"
,"pinterest"
,"infantino"
,"exampleuk"
];
var re = new RegExp('\\b' + blacklist.join("|") + '\\b', 'i');
return(linkpattern.match(re) != null);
}
jQuery(document).ready(function(){
//for each anchor on the page, check whether we need to push
jQuery('a').each(function() {
var a = new RegExp('/' + window.location.host + '/');
//do not touch javascript links
var b = new RegExp('^javascript', 'i');
var c = new RegExp('javascript', 'i');
//test against the blacklist
var d = donotpushlinks(this.href);
//1) check if link is not internal
if(!a.test(this.href))
{
//2) Check if it is javascript
if (!b.test(this.href) || !c.test(this.href))
{
//3) check if it not one of the blackklist test patterns
if (!d)
{
//console.log(d + " " + this.href);
jQuery(this).click(function(event)
{
event.preventDefault();
event.stopPropagation();
// Google it
_gaq.push(['_link',this.href]);
return false;
});
}
//3) Otherwise, it is a link to an external site outside of example. Open in new window with NO tracking
else
{
jQuery(this).click(function(event)
{
event.preventDefault();
event.stopPropagation();
window.open(this.href, '_blank');
return false;
});
}
}
//2) Otherwise, it is javascript, so leave it alone
else{
}
}
//1) otherwise it is internal, so leave it alone
else
{
//console.log('Internal link: ' + this.href);
}
});
});