0
votes
1answer
21 views

PHP PDO Header redirect stopped working [duplicate]

I've built a site on my test server and now I'm putting it on a new server that will host my site. I'm using PDO for my connections and once the prepared statement executes I redirect back to the ...
1
vote
1answer
62 views

Different ways of resolving the WWW URL prefix

It seems that the most commonly accepted method of redirecting users from http://example.com to http://www.example.com is by 301 Permanent redirect, but I came across a site(Facebook) that appears to ...
0
votes
0answers
19 views

How to not send headers to the browser for application errors before handling errors

Right now i am able to generate custom errors page with the code below at web config <customErrors mode="On" defaultRedirect="Error404.aspx" redirectMode="ResponseRewrite"> <error ...
1
vote
2answers
54 views

PHP Redirect, Iptables, and data after connection closed

This is an odd one. We recently found a 3-month old bug in our code where we post a 302 redirect header after a print_r. As a result, the browser would receive the string, and not redirect to the ...
0
votes
0answers
14 views

Can't find DTS maleware redirecting my http headers

So my site has been compromised by a DTS attack. (http://blog.sucuri.net/2013/02/large-scale-compromises-leading-to-tds.html) I found a rewrite in my .htaccess file but it got in somewhere else that ...
1
vote
1answer
277 views

Header 'X-XSS-Protection: 0' not preventing error

After submitting a form with a Vimeo video link, the video is not showing and Safari returns: Refused to execute a JavaScript script. Source code of script found within request. The video does show up ...
0
votes
0answers
51 views

How do browsers cache 301 redirects with query strings

I'm looking to put in a 301 redirect to an application for specific values of a query string parameter. For Example: http://www.example.com/page?id=1 → redirect to a new page ...
1
vote
1answer
57 views

Inconsistent HTTP redirect behavior between hosting environments

This is a follow up question to one I asked a few days ago and ultimately managed to resolve myself. While I was happy to find the underlying problem, the fact that the issue only manifested in one ...
1
vote
1answer
201 views

Apache's mod_proxy_html with PHP header(“Location:…”); doesn't redirect

I've googled the crap out of this problem and came up with nothing, so hopefully you guys can help. Goal Configure a reverse proxy (using Apache's mod_proxy) to enable access to an internal PHP ...
1
vote
1answer
68 views

PHP - header() redirect: Firebug logs 404 - why?

I am using a PHP redirect in one of my projects. I do it like this: header( 'Location: http://domain.net/?cig=warn&onum=' . $onum . '&cnum=' . $cnum . '&c=' . $c . '#Form' ); So you ...
2
votes
2answers
157 views

Does .htaccess redirect affects Google Analytics

I'm developing a website, and it's root content is on the /home/ folder. As I'm going to use a htaccess redirect, to "drive" visitors from the root folder to the /home folder, my question is: Does ...
0
votes
2answers
48 views

Header redirect syntax [closed]

How do I correct the following, as neither are working -- $_SESSION["page_address"] echos fine $baseaddress = "http://www.domain.com"; header("Location: $baseaddress . ...
0
votes
1answer
29 views

301 redirect with RewriteRules

I have a problem concerning RewriteRules. I'd like to move one page permanently, so I want to use a 301 redirect. I tried this: RewriteRule ^page1/([A-Z].*)$ http://www.abs.nl/page1/vraag-$1 [R=301] ...
2
votes
1answer
405 views

http_redirect() vs header() [duplicate]

Possible Duplicate: php header location vs php_redirect Throughout the years I've been using PHP I've always redirected to another URL via the header('Location: example.com') function. ...
1
vote
3answers
192 views

404 error page showing HTTP Status 200 instead of 404

I have the following code for performing redirection. If my $includeFile does not exist it will redirect to a 404 page. This is a snippet from my index.php if ( !file_exists($includeFile) ) ...
2
votes
1answer
39 views

Redirection header works even when content is supposed to be outputed

The following redirects me to google.com Hello!!! <?php echo 'ouch!'; header('Location: http://www.google.com'); ?> Shouldn't this not work because text is being outputted before a header is ...
1
vote
0answers
158 views

Following redirects in Node.js

I'm working on proxy for downloading files from Google Docs. Since the download urls Google Drive API gives for non-gdrive filetypes (pdf, txt, jpeg) are redirects and having read [1] and [2], I ...
0
votes
0answers
209 views

How can set the Vary HTTP header for Mobile redirection using IIS URL Rewrite?

According to this answer, for redirecting a mobile user to a mobile site you should add the HTTP header- Vary: user-agent I'm using IIS URL Rewrite module, with a rule like this- <rule ...
0
votes
0answers
80 views

Get redirect location of URL list

I have a txt file with a list of URLs. I want the redirect locations of all the URLs in that list. Here is my code: $url_list = "ggurl.txt"; $ch = curl_init(); curl_setopt($ch, CURLOPT_HEADER, ...
0
votes
1answer
162 views

Stoping .htaccess from sending redirect (302) header

I'm creating an API, and I'm testing CRUD the functionality with an external client. To be able to skip index.php in the URL, and only use '.../producer/id' etc I changed redirection in the .htaccess ...
0
votes
2answers
170 views

How to redirect a page with POST data

I have two different servers, and I need to send post data from one server to another. But there are some issues that I'll describe below. First, let me describe them: First server's using Apache + ...
1
vote
1answer
338 views

JAX-RS custom headers not being added to redirect response

I am trying to add some custom header parameters to a HTTP 303 (redirect) response. However, the new headers seem to be getting stripped from the response. This code is meant to receive a request ...
0
votes
1answer
85 views

Rails: User Authentification not redirecting after correct username/password input

I have a rails app, for some reason my login action does not work. I put in a correct username/password in, however it does not redirect to the desired 'menu' action. It just redirects me to the login ...
4
votes
1answer
190 views

Do not propagate headers on HTTP redirects

I have files hosted on Amazon S3, and I'd like to download them after a treatment in my app. This app view requires the HTTP Authorization header to proceed. Here is the process: Query view ...
0
votes
1answer
64 views

PHP Redirect - Won't Stay on Current Page

<?php $links = array(); $links[] = ''; //i left this blank so it stays on the current page, problem causer? $links[] = 'http://domain2.com'; $links[] = 'http://domain3.com'; $links[] = ...
1
vote
3answers
259 views

twisted location header redirect

From the render_GET method of a Resource in twisted, is it possible to redirect to a different url entirely (hosted elsewhere) request.redirect(url) doesn't appear to do anything, and neither does ...
0
votes
2answers
301 views

How to implement 303 redirect?

I'd like to know how to implement 303 redirect for displaying post data. Example: I send the form. Redirect Page displays the info I just posted. (Eg: Name, email). I think it is done with ...
0
votes
1answer
80 views

Is it possible to modify or add custom http headers on a 301, 302, 303 or 307 redirect?

Does the HTTP protocol allow a 302 request header to be modified so some parameters can be set and passed to the url receiving the request?
-3
votes
9answers
215 views

Header() is not redirecting PHP [closed]

I am using following PHP code to check session. But if the session is not logged into then page is not redirect just show the black page. My If condition is right ! it is hitting header function .. ...
0
votes
5answers
83 views

Php - Redirection Failed after writing contents in language file containing php Constants

I have language related Constants defined in a php file, that can be edited from admin side, After editing the contents, any page that include it, failed to successfully redirect using php header ...
3
votes
1answer
89 views

How we can install a site-wide 301 rel=canonical forward?

I have a wordpress site for example www.example.com and it has more than 300 pages. I have installed a copy of our entire www.example.com site on a subdomain of the US site. For example the subdomain ...
-1
votes
2answers
129 views

Catching all types of redirection, header, meta, JavaScript, etc

I'm in need of a function that tests a URL if it is redirected by whatever means. So far, I have used cURL to catch header redirects, but there are obviously more ways to achieve a redirect. Eg. ...
0
votes
1answer
267 views

MAMP PHP Mac OSX Header Not working

I've installed MAMP on a mac desktop running 10.6.8. I'm using dreamweaver as the IDE to develop my website. I have written my webpage in php, I can preview it in the browser and I can see eveything, ...
0
votes
0answers
64 views

406 when loading image

Having weird 406 error when loading images. I created a dynamic products page, which has a PHP class that goes like this: <img src="'.$imgpath.'" alt="'.$productdesc.'" /> When I visit ...
0
votes
1answer
1k views

How does google deal with www.google.com/ncr?

I tried to find out this, and got that http://www.google.com/ncr uses 302(or 301) redirections(not sure if it really is). and i also got that, the server side redirections(301 and 302) will not ...
1
vote
1answer
156 views

PHP redirect with Range (byte-serving) passthrough

I have some PHP code which frequently serves page redirects to clients via the header('Location: x') function. The header redirect works fine; I have no output before the Header function, and the ...
0
votes
1answer
45 views

Redirection in the homepage?

I'm working on a website that deals with many languages and when a user enters to example.com, a little PHP script detects the user browser's preferred language (based on the Accept-Language header) ...
0
votes
2answers
97 views

PHP - Redirect to download page if file is not available

I'm using PHP to handle file downloads. Currently I'm showing just an information if a file is not available. (Happends if older file version get linked from external websites) How to redirect ...
1
vote
4answers
325 views

php redirection that won't redirect

I'm making a redirection thanks to PHP but it doesn't redirect at all (but make everithing else that redirecting). here's the code that I've implemented: <?php session_start(); // pour ...
3
votes
4answers
115 views

How can I detect all the pages in a redirect with php?

i found this question on quora and didn't know how to resolve this Scenario -- User is on one.php and clicks a link that points to two.php Two.php does a header redirect to three.php If we check ...
2
votes
3answers
174 views

When should I call header('Location') without die()?

Does calling header('Location:') without die() after it make sense at all? If not, why isn't die() being performed automatically by PHP interpreter? If yes, when?
0
votes
1answer
224 views

PHP Header() redirect shows old URI briefly before redirecting to new

Right now, I am using a custom PHP solution to force WWW to be appended to my script URLs, since I am using WordPress' .htaccess rules to "clean up" index.php. The force WWW .htaccess rules are not ...
0
votes
1answer
195 views

Simultaneous redirect to App Store and another page

After having completed an online registration process, I want to check if the user is using an iPhone, and in that case give the option of opening App Store to download the app. Here's what I've coded ...
3
votes
4answers
452 views

PHP Redirect with Custom Headers

I am writing a basic authorization system and I am struggling with it a bit. There are two files involved - index.php and login.php. The login form is pretty simple (it's inside index.php): ...
1
vote
2answers
231 views

PHP Header() not working for Redirect

I am attempting to parse a file downloads page, and then depending upon what arguement was passed in the URL, redirect them to the appropriate download file automatically. Everything works fine when I ...
0
votes
1answer
35 views

Is the Location header allowed to have a vertical bar?

I recently came across a server that's sending a Location header (for a redirect) that looks like this: Location: http://www.example.com/something.ext?auth=123|123 When I try to use this in my Java ...
0
votes
4answers
1k views

Redirecting after completion of form action

i am using the following code for form action, // includes require_once('inc/mysql_wrapper.php'); $DB=get_db_connection(); require_once('inc/defines.inc.php'); ...
2
votes
4answers
2k views

Redirect not working with Header(Location ) and session variable

1: i use register.php to sign up the clients, 2: the data collected from the form is send to 1.php, it is saved in database 3: after form data is saved in database, 1.php forwards selected form data ...
1
vote
3answers
389 views

Redirecting same page again

I have page register.php, which is used to get user informations, after completion of form, it submits to an-other page, post.php. post.php performs two actions, it adds incoming data to 2 locations ...
0
votes
1answer
208 views

Missing HTTP_REFERER after redirect

I am trying to track the url that refered my website. One way is using a custom affiliate url which will do a redirect (302) to my site. I want to track where the users are coming from. However, I ...

1 2