473,402 Members | 2,061 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,402 software developers and data experts.

redirect based on link followed

Hi,

I have a good feeling this is possible, but do not know where I would start.

I have a few pages at http://www.mydomain.com/whatever.html

Someone has started linking to them with http://www.rubbish.com/mydomain

When you click that second link, it redirects to my html file.

Is there a way that I can break that? The second domain owner isn't about to stop (I have asked) and I would rather it redirect straight to google than come through to my site. I have tried a few Javascripts but I am no coder. I would greatly appreciate any help - my website can handle ASP (and by my limited knowledge, ASP >> Javascript).

Thanks in advance

John
Oct 16 '07 #1
10 2136
markrawlingson
346 Expert 100+
Yes you can do that, and this guy is playing with fire if he's refusing to take the links to your content off his website... you could actually be a real jerk to this guy if you wanted to. Personally, I would redirect the link to a page with adult material just to make a point to him, but that's me.

Anyway, You can check what is called the "referrer", the page that "referred" the end user's browser or directed the user's browser to your page. In this case it would be Http://rubbish.com by your example... and you can check that using the ServerVariables collection in ASP. Once you know that, you can block out anything coming from that domain, or you can just direct elsewhere, or deal with it however you like really.

That is to say.. you could code something like this...

Expand|Select|Wrap|Line Numbers
  1. <%
  2. 'include this at the TOP of every single page in your site (as long as they have an .asp extension of course)
  3.    Referrer = Request.ServerVariable("HTTP_REFERRER")
  4.    If Referrer = "http://www.rubbish.com" Then
  5.       Response.write "Please note that you have come to this page in an illegal manner. Please notify the user of the referring website. Here is his email: <a href='mailto:sombozo@rubbish.com'>Some Bozo</a>."
  6.    End if
  7. %>
  8.  
Of course, you can deal with it any way you like - redirect to google or any other website, document the intrusion in a database along with ip an all, redirect back to the referring website, etc. Sky is the limit.

Note that you WILL have to include this at the top of all pages in your site if you really want to put a nail in the coffin here, and you WILL have to rename your pages to include the .asp extension. So instead of page.html --> page.asp in order to run this.

Hope this helps you out.

Sincerely,
Mark
Oct 16 '07 #2
Hi Mark,

Thanks so much for replying.

OK, two kickers to this, I am not sure how much it breaks what you are trying to do.

First, his site, http://rubbish.com, is basically a rip of http://tinyurl.com. He is just redirecting subfolders to my files directly (and numerous others), however, he is posting these links on another forum, so I am wondering what the referrer will be. If it is http://rubbish.com, happy days - but if it is http://www.thirdparty.com (where he posted his rubbish.com link) then that may be an issue. I don't want to block www.thirdparty.com users, just those that click one of his links.

Boy I hope that makes sense :)

Second, my files are relatively well published - renaming extensions to .asp is going to stuff quite a few things up. Could I perhaps do it in two passes? Have my .html redirect to a .asp, keeping the referrer and sending his rubbish.com links to http://www.horridlydisgustingporn.com?

I know I am being difficult, but I am fantastically frustrated at the moment. Ideally I would like to create a page called scumbag.html and redirect people to that page - a little note explaining that they have been duped by a scumbag, and to please note the correct URL (it isn't their fault after all)

Thanks again for responding - I will do some research on what you posted and see if I can kick it to do what I want until you respond.

John
Oct 16 '07 #3
markrawlingson
346 Expert 100+
Hi John,

That's not a problem. There's more than a few ways to skin a cat.

If you can't go around changing the file extensions of your files then you can use javascript, which will run just fine within a .html extension. I'd advise using ASP where ever you can though, simply because once this guy catches on to what you're doing he may visit your site, view the source code - and come up with a workaround, then you're back to the drawing board. (ASP is compiled on server and sent to the visitors browser in plain text, the user can't see the ASP code, and therefore doesn't know what you've done. Javascript is run by the visitor's browser itself, and can easily be viewed by anyone visiting the site.)

In particular, the document.referrer method. (not sure how familar you are with javascript, but place this within the <head></head> tags of your HTML document(s))

Expand|Select|Wrap|Line Numbers
  1. window.onload - checkReferrer;
  2. function checkReferrer() {
  3.    if (document.referrer.indexOf("http://www.ripoffoftinyurl.com") > 0) {
  4.       location.href = "goaway.html";
  5.    }
  6. }
  7.  
In regards to your other question... It doesn't matter where he posts the links. What matters is the url or domain which sent the user to your pages, that's what you're checking for - and that will always be his "whatever.com" domain.

For instance, if he posts it here - thescripts.com is not the referrer. The browser will first load HIS URL BEFORE redirecting to your page, therefore the referrer will be his domain, even though the user will probably never see it.

If he posts the link here, or writes it on a piece of paper and shoves it down his friend's pants - the code will work because the referring url is still "whatever.com". If I find your site on google the referring url is google.com, or you give me the direct link the referring url will be the last page i visited, or if i open a new browser window with my homepage being about:blank - there is no referring url - The redirect will not mess with my ability to see your page because the referring url does not include "whatever.com".

Hope this helps.
Sincerely,
Mark
Oct 17 '07 #4
jhardman
3,406 Expert 2GB
There is a server setting that allows the server to check for ASP code in a file with extension .HTML, but it might slow down the server since the server will be checking for code in every page it serves, still, this might be a more straightforward solution if you still want to use the ASP approach but don't want to rename every file in your site.

Then you could probably do something in the global.asa file to perform a simple script on every page. Mark, you've used the global.asa file to add code to every page, right? I don't think I've ever bothered to try, but it might be a quick fix for your problem.

Jared
Oct 17 '07 #5
markrawlingson
346 Expert 100+
Well I'm flabergasted. I have no idea why I didn't think of the global.asa - I've only used it a few hundred times for similar solutions...lol

Thanks Jared!

John,

Copy the following code and save it as a new file called global.asa - save this file in the root directory of your website. It should run fine for all desired purposes, no messing about adding code to every page etc.

Expand|Select|Wrap|Line Numbers
  1. <script language="vbscript" runat="server">
  2. Sub Session_OnStart
  3.    Referrer = Request.ServerVariable("HTTP_REFERRER")
  4.    If InStr(Referrer,"http://www.rubbish.com") > 0 Then
  5.       Response.Redirect "http://www.tinyurl.com" 'lol - refer people to the competition?
  6.    End if
  7. End Sub
  8. </script> 
  9.  
Oct 17 '07 #6
Thank you so much for the explanation and the help,

I have added both (the javascript and the global.asa. I realise that is redundant, but the global.asa seemed to have no effect)

Does this take time to take effect? This is hosted on a godaddy server, if that makes any difference. I know that I have asp running because I have a contact page using an ASP code (and Community Server running as well)

I will keep playing around with it and try to get it to work. I would gladly post the code and show you what I am doing, but then it will no doubt be trawled by the googlebot, and my relative anonymity will be void. If a PM with the actual sites in question would help, I can do that.

We are also in different timezones, so I should have a full day to try and make sense of all of this :)

Thanks again,

John
Oct 17 '07 #7
OK, why the Java is not working, I don't know. However, it seemed I needed to tick a few godaddy boxes to get the asa working.

Those boxes are ticked now, so it is a matter of waiting for it to sort itself out (hopefully)

I will keep you informed

John
Oct 17 '07 #8
You know when you have a user that withholds VITAL information from you til right up to the last minute, but you forgive them for it because you are such a great guy and they are clearly clueless? :)

This is running, what I believe to be, ASP.net 2.0

Judging by the fact that Community Server has a global.asax file instead of an asa, and my googling has resulted in the fact they are TOTALLY different, I dare say that greatly affects the code.

As it is now, I have the global.asa, and the global.asa again, renamed to .asax (with more than a little optimism). I have removed the Java, and reconfigured godaddy to make this subdomain of mine be a "content root" and thereby pay attention to this file.

No dice yet, but I am still playing with it.

Is there a point? Is the above solution incompatible with my setup here?

Thanks again

John
Oct 17 '07 #9
markrawlingson
346 Expert 100+
You got it, .asax or .aspx extensions indicate the server is running ASP.Net - however, Both are Microsoft technologies and run on IIS by default (internet information service) - so if you're running ASP.Net chances are your server runs asp as well, unless the server admin has turned it off because godaddy doesn't wish to offer that as a service.

I think you're best shot is to talk to godaddy techsupport and tell them you are trying to implement a global.asa file in classic asp and see if they can help guide you in the right direction. If all else fails you could recode that .asa file into a .net .asax - I don't personally know ASP.Net (yet) but this forum is full of great guys who should be able to help out in that department if it comes down to that. I would talk to godaddy first and see what they say though.

As for the javascript, let me run some tests on it - if it's not working I may have screwed on the syntax.. it looks ok to me but let me take a closer look into it and make sure that it does what it's supposed to.

I'll re-post the new code if the one i posted above doesn't work properly.

Sincerely,
Mark
Oct 18 '07 #10
markrawlingson
346 Expert 100+
Expand|Select|Wrap|Line Numbers
  1. window.onload = checkReferrer;
  2. function checkReferrer() {
  3.    if (document.referrer.indexOf("whatever") > 0) { // change "whatever" to his domain name
  4.       location.href = "goaway.html"; // change this line to where you want the user to be redirected.
  5.    }
  6. }
  7.  
The original javascript was syntactically incorrect.The mistake was on the first line.. typo. (window.onload - checkReferrer should have been window.onload = checkReferrer)

Anyway, this one works

Hope this helps!

Sincerely,
Mark
Oct 18 '07 #11

Sign in to post your reply or Sign up for a free account.

Similar topics

9
by: deko | last post by:
I have a page that I don't want anyone to be able to link directly to. The page should only be accessed from gatepage.php. I tried this code, but keep getting errors - "header info already sent",...
7
by: Donna Hawkins | last post by:
I want to use javascript to redirect to a URL which has been passed as a variable (in php). I have searched but cannot find any solution. I think this code is a basic redirect: <script...
10
by: Anthony Williams | last post by:
Hi gang, This one looks like a bug :o( As you may or may not know, setting session management in web.config to use cookieless sessions causes the ASP.NET runtime to munge a session ID into...
5
by: Trisha | last post by:
I have a navigation user control navig.ascx that redirects to respective pages based on webcontrols.linkbutton clicks using response.redirect. I would like to control the look and feel of those...
1
by: stevebremermn | last post by:
I'm working on setting up some affiliate links on a site of mine and I haven't been able to get a redirect to work. The original affiliate link looks like this: ...
1
by: pmasclark | last post by:
Hello, I created a web site, site A, that redirects to another web site, site B, where a simple web service is hosted. The code to call the web service is simple. oWS.AllowAutoRedirect = True...
7
by: =?Utf-8?B?YzY3NjIyOA==?= | last post by:
Hi all, I am trying to set this up using asp code and IIS configuration. But it seems not working. Here it is the way I am doing. In IIS I set up a virtual directory with secure communication, I...
2
by: =?ISO-8859-1?Q?Fran=E7ois_de_Dardel?= | last post by:
I am not sure if this is the proper forum, but I always found very helpful information here and I would like to have the advice of experts. Just before new year (end Dec 2006), my internet...
10
by: Eirik Eldorsen | last post by:
How can I 301 redirect www.example.com/default.aspx to www.example.com without using ISAPI filters?
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.