Tagged Questions
0
votes
0answers
64 views
Add http referer with redirection to browser in android application
I want to add referer with a redirection to browser on android apps.
I use this :
browser.setData(Uri.parse("http://www.plus2net.com/php_tutorial/php_referrer.php"));
I know add referer with ...
0
votes
0answers
100 views
Add referer with a redirect Safari or WebView in application IOS
I'm working on a project that listening a click on IOS application and redirects on a webview if the redirection is in apps or redirects on safari browser.
I want to add referer of my website with ...
0
votes
1answer
132 views
Redirect, but hide referrer
Lets say I have a URL, www.mysite.com/go that I want to redirect to www.anothersite.com/site.php?id=999
The trick is, I do not want anothersite.com to be able to see that the request came from ...
0
votes
1answer
233 views
How does anonym.to work?
How does this website manage to blank the referer. All other referer blanking service seem to just cloak the referer. This one however manages to make google analytics believe that the user typed in ...
0
votes
1answer
246 views
.htaccess Redirect based on HTTP_REFERER
I'm trying to do what I've said above but I am getting a looping error and sometimes a 500 error!
What I want is for users requesting the root 'Home' page of the site to be redirected to /Welcome - ...
1
vote
1answer
104 views
detect the name of the page that the user came from
I am redirecting the pages to 404.php if the page is not found from IIS settings.
My problem is that I would like to detect the LINK that they were looking for.
For example:
if some one access to ...
0
votes
1answer
216 views
Curl redirection not working. What am I doing wrong?
I want to redirect a specific page from my .in domain to my .com domain using curl and at the same time change the HTTP Referer to something else (blank).
I am using the following code :
<?php
...
0
votes
3answers
209 views
What can I use instead of $_SERVER['HTTP_REFERER'] in PHP for consistent data regarding the referring link?
I looked up the manual on php.net for $_SERVER['HTTP_REFERER'] and it explicity says that it is unreliable depending on the browser being used on the client side. Is there a consistent replacement ...
0
votes
4answers
4k views
why is my header(“Location: $_SERVER['HTTP_REFERER']”); PHP function not working?
It works when I input
header("Location: http://www.google.com");
but it doesn't work when I have
header("Location: $_SERVER['HTTP_REFERER']");
I want to redirect the page to whatever page it ...
2
votes
3answers
623 views
ZF redirector. Why redirect page doesn't get HTTP_REFERER?
I have two actions in controller:
function indexAction()
{
$this->_redirect('/index/welcome/');
}
function welcomeAction()
{
echo isset($_SERVER['HTTP_REFERER']);
}
After redirect it ...
0
votes
2answers
2k views
redirect and fake the referer at the sametime
Is there a way to redirect the user to another site and fake the referrer at the same time.?
Tried this with my code, i know its wrong but thats only how far i can get.
<?php
$page1 = ...
2
votes
2answers
3k views
HTTP Referer after 302 Redirect
I am creating a website using Java servlets, and I have a page called LogIn. What I want to happen, is that once the user successfully fills out the login form, it returns them to the page that they ...
0
votes
2answers
1k views
$_SERVER['HTTP_REFERER'] is always empty - PHP
<?php
$camefrom =$_SERVER['HTTP_REFERER'];
if ((substr($camefrom,0,26) == "http://www.fromperson.com")
header( 'Location: http://toperson.com' ) ;
?>
I need to redirect to www.to.com if the ...
3
votes
6answers
185 views
Redirects and Referers
My actual implementation of this is much more complicated, with authentication and a bunch of other stuff, but at the simplest form, here's the problem I'm having. Redirecting with header doesn't ...
5
votes
2answers
2k views
JavaScript Redirect: Problem with Referer Header
Somebody follows a blog link(say http://blog) to come to my site (say http://mysite/a.php).
So now she is on page http://mysite/a.php and referer is set to http://blog
Now there is JavaScript on ...
2
votes
1answer
1k views
Changing http-referer via a redirect
We are signing up to an online resource that uses http-referer as authentication (bad idea, I know) to prove that the request comes from our intranet (IP address is not available for this as there is ...
2
votes
4answers
590 views
How do you detect what page caused the Internal Server Error?
So, in my .htaccess file I have this ErrorDocument lines:
ErrorDocument 500 http://www.example.com/500
Since my server runs multiple websites from the same core files, I just want to redirect all ...
1
vote
2answers
1k views
Redirect based on referer's url
I am trying to redirect visitors to a site based on their referring url.
Here is the script:
php
$domain='blankds.com';
$referrer=$_SERVER['HTTP_REFERER'];
echo $referrer;
if ...
1
vote
1answer
430 views
Knowing if a script is called from an iframe on another host in PHP (hopefuly without Javascript)
I want to identify if a PHP script is being called inside an iframe of a different host.
I could resort to using Javascript for that, but I'd like to find a JS-free solution first.
Right now I'm ...
28
votes
4answers
10k views
Will a 302 redirect maintain the referer string?
I need to redirect the user from one page to another, but I need to maintain the original referer string. So, for example, if they start out on http://www.othersite.com/pageA.jsp, click a link that ...
2
votes
4answers
1k views
Maintain HTTP Referer
I've setup some redirects on an Apache server. They look at bit like this:
Redirect /Name/register /login.html
My question is this... is there anyway to preserve the HTTP Referrer through this ...
3
votes
4answers
4k views
PHP: Returning a user to their original page after login
Are there any 'best practices' concerning how one should return a user to their original page after logging in to your website, specifically in PHP? e.g. if I'm viewing a StackOverflow question while ...