Tagged Questions
When a URL is updated the server sends a HTTP redirect message with the updated URL. The redirect option in HTTP is also used by the server to perform load balancing.
374
votes
9answers
253k views
How can I make a redirect page in jQuery/JavaScript?
How can I redirect the user from one page to another using jQuery?
141
votes
18answers
115k views
How to manage a redirect request after a jQuery Ajax call
Im using $.post() to call a Servlet using Ajax and then use the resulting HTML fragment to replace a div element in the User's current page. However, if the session timeouts the server sends a ...
44
votes
5answers
21k views
Python + Django page redirect
How do I accomplish a simple redirect (e.g. cflocation in ColdFusion, or header(location:http://) in django)?
42
votes
12answers
48k views
Generic htaccess redirect www to non-www
I would like to redirect www.example.com to example.com.
The following htaccess code makes this happen:
RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 ...
29
votes
6answers
28k views
Redirect stderr and stdout in a bash script
I want to redirect both stdout and stderr of a process to a single file. How do I do that in bash?
26
votes
5answers
24k views
Redirecting StdErr to a Variable in a Bash Script
Let's say I have a script like the following:
useless.sh
echo "This Is Error" 1>&2
echo "This Is Output"
And I have another shell script:
alsoUseless.sh
./useless.sh | sed ...
24
votes
2answers
11k views
bash: redirect and append both stdout and stderr
To redirect stdout in bash, overwriting file
cmd > file.txt
To redirect stdout in bash, appending to file
cmd >> file.txt
To redirect both stdout and stderr, overwriting
cmd &> ...
23
votes
4answers
545 views
How can I redirect JNI console output to Eclipse Console view, when Eclipse plugin uses JNI?
I have an Eclipse plugin (A) which has a dependency on another plugin (B). Plugin B is simply a wrapper around a jar, which contains a native dll, and performs jni functionality.
Given this setup, I ...
21
votes
2answers
3k views
URL Fragment and 302 redirects
It's well known that URL fragment (the part after the #) is not sent to the server. I do wonder however how fragments work when a server redirect (via HTTP status 302 and Location: header) is ...
21
votes
5answers
3k views
Redirect 'myapp.com' to 'www.myapp.com' in rails without using htaccess?
Using Morph Labs' Appspace to deploy a site means no automated way to redirect 'myapp.com' to 'www.myapp.com' (and no access to .htacess).
Is there an in-rails way to do this? Would I need a plugin ...
20
votes
3answers
3k views
How to use > in an xargs command?
I want to find a bash command that will let me grep every file in a directory and write the output of that grep to a separate file. My guess would have been to do something like this
ls -1 | xargs ...
18
votes
5answers
12k views
Ruby On Rails - redirect_to(:back)?
I have a page that lists all of the projects that has sortable headers and pagination.
path:
/projects?order=asc&page=3&sort=code
I choose to edit one of the projects
path:
...
16
votes
3answers
581 views
Why is my 301 Redirect taking so long?
In a long tiredsome quest to speed up my site, I have figured out something is wrong with the redirection: currently my index.php handles all the homepage redirections via PHP header location 301 ...
16
votes
3answers
513 views
Redirecting before POST upload has been completed
I have form with file upload. The files to be uploaded actually are pictures and videos, so they can be quite big. I have logic which based on headers and first 1KB can determine if the rest will be ...
16
votes
4answers
3k 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 ...
14
votes
4answers
6k views
ASP.NET MVC Login ReturnUrl always NULL?
Using Forms Authentication in ASP.NET MVC when trying to log back into a site, it puts a ReturnUrl parameter in the query string. My Logon action method accepts a "returnUrl" string. However it ...
13
votes
1answer
63 views
Automatically show a blank page in a folder without a default html page
In my site I have many folders that holds different type of files.
/img/
/js/
/styles/
/files/
(I have 20 more and I will add more eventually)
Currently, I have in each folder a index.html (my ...
13
votes
6answers
292 views
Redirecting to FTP URL with username and password in Safari
I've got a problem with Safari I haven't been able to solve:
<?php
header("Location: ftp://username:password@somedomain.org/somefile.zip");
?>
This code-snippet works in every browser ...
13
votes
7answers
2k views
AJAX redirect dilemma, how to get redirect URL OR how to set properties for redirect request
First, I'm working in Google Chrome, if that helps. Here is the behavior:
I send an xhr request via jQuery to a remote site (this is a chrome Extension, and I've set all of the cross-site ...
13
votes
6answers
16k views
jQuery and AJAX response header
So I've got this jQuery AJAX call, and the response comes from the server in the form of a 302 redirect. I'd like to take this redirect and load it in an iframe, but when I try to view the header info ...
13
votes
2answers
9k views
Passing param values to redirect_to as querystring in rails
This should be simple, but I can't seem to find an easy answer.
How can I pass param values from the current request into a redirect_to call? I have some form values I'd like to pass into the query ...
13
votes
7answers
12k views
ASP.NET Push Redirect on Session Timeout
I'm looking for a tutorial, blog entry, or some help on the technique behind websites that automatically push users (ie without a postback) when the session expires. Any help is appreciated
12
votes
4answers
11k views
Redirecting to a relative URL in JavaScript
I have a problem:
I want to redirect via JavaScript to a directory above.
My code:
window.location.href = (location.href).substr(0, (location.href).lastIndexOf('folder'));
The url looks like this:
...
12
votes
3answers
7k views
PHP generate file for download then redirect
I have a PHP app that creates a CSV file which is forced to download using headers. Here's the relevant part of the code:
header('Content-Type: application/csv');
header("Content-length: " . ...
12
votes
4answers
7k views
IIS: Redirect ALL requests to one page?
For my IIS website, I'd like to redirect ALL requests to ONE page. The purpose of this is that I want to do some maintenance on the database (take it off-line) that all my web applications use. I have ...
11
votes
4answers
929 views
Redirecting default.aspx to root virtual directory
I have a simple ASP.NET 3.5 application running under IIS7 under a virtual directory. So the URL of my app is like http://site.com/app. I want to 301-redirect the request to site.com/app/default.aspx ...
11
votes
7answers
17k views
Redirect to previous page in zend framework
I want to add a redirection URL to my login forms action (as a query) in login page, so after loging-in, one can visit the previous page he or she was surfing.
First I thought about using Zend ...
11
votes
3answers
7k views
How to redirect from HTTPS to HTTP without annoying error messages
I want to redirect users, after HTTPS login, to the HTTP pages on the site. Using HTTPS for the whole site is not going to happen.
What I have so far is the following:
User posts the login form ...
11
votes
3answers
9k views
How can I redirect STDERR to STDOUT, but ignore the original STDOUT?
I have a program whose STDERR output I want to inspect and run grep on etc.
So I could redirect it to STDOUT and use grep, but the problem is, I do not want the original STDOUT content.
So, this one ...
10
votes
2answers
503 views
Difference between HTTP redirect codes
The differences between the various HTTP 3XX redirect codes are not clear to me. Yes, I've read the spec, but there seems to be some discrepancy between the standard and actual practice here.
The ...
10
votes
6answers
1k views
Why I have to call 'exit' after redirection through header('Location..') in PHP?
You know that if you want to redirect an user in PHP you can use the header function:
header('Location: http://smowhere.com');
It is also well known that it is a good practice to put also an exit; ...
10
votes
1answer
3k views
Why can't I set a cookie and redirect?
I´m having a problem setting a cookie and doing a 302 redirect
In chrome the cookie is not being set (I haven't tested safari), in other browsers I was having the same problem until I added Path=/ to ...
10
votes
3answers
6k views
How can I reinitialize Perl's STDIN/STDOUT/STDERR?
I have a Perl script which forks and daemonizes itself. It's run by cron, so in order to not leave a zombie around, I shut down STDIN,STDOUT, and STDERR:
open STDIN, '/dev/null' or die "Can't read ...
10
votes
3answers
3k views
bash: tee output AND capture exit status
I want to execute a long running command in bash shell, and both capture its exit status, and tee its output.
So I do this
command | tee out.txt
ST=$?
The problem is that the variable ST captures ...
10
votes
5answers
14k views
log4j redirect stdout to DailyRollingFileAppender
I have a java app that uses log4j.
Config:
log4j.rootLogger=info, file
log4j.appender.file=org.apache.log4j.DailyRollingFileAppender
log4j.appender.file.File=${user.home}/logs/app.log
...
10
votes
4answers
27k views
aspx page to redirect to a new page
What is the code required to redirect the broweser to a new page with an ASPX page?
I have tried this on my page default.aspx :
<% Response.Redirect("new.aspx", true); %>
or
<%@ ...
10
votes
7answers
24k views
.htaccess rewrite to redirect root URL to subdirectory
Trying to get
www.example.com
to go directly to
www.example.com/store
I have tried multiple bits of code and none work. Please help!
What I've tried:
Options +FollowSymlinks
RewriteEngine on
...
10
votes
4answers
2k views
ASP.NET - redirect 301
How do I redirect permanently in ASP DOT NET? I'd like to do a 301 redirect from one page on my site to another page.
10
votes
7answers
6k views
How to redirect with “www” URL's to without “www” URL's or vice-versa?
I am using ASP.NET 2.0 C#. I want to redirect all request for my web app with "www" to without "www"
www.example.com to example.com
Or
example.com to www.example.com
Stackoverflow.com is already ...
10
votes
4answers
1k views
Is there a possible “race condition” when using Asp.Net MVC TempData across a redirect?
When using TempData, my understanding is that it will keep whatever you put in it around for only one request. So when using TempData to retain data across a redirect (in order to use the ...
9
votes
3answers
2k views
“Redirect” page without refresh (Facebook photos style)
I am trying to implement content browsing like it is done on Facebook when user is browsing the photos. I guess everyone is familiar with that photo browsing where you can click "next" and "previous" ...
9
votes
6answers
2k views
redirect COPY of stdout to log file from within bash script itself
I know how to redirect stdout to a file:
exec > foo.log
echo test
this will put the 'test' into the foo.log file.
Now I want to redirect the output into the log file AND keep it on stdout
i.e. ...
9
votes
2answers
990 views
What is correct HTTP status code when redirecting to a login page?
When a user is not logged in and tries to access an page that requires login, what is the correct HTTP status code for a redirect to the login page?
I don't feel that any of the 3xx fit that ...
9
votes
3answers
6k views
Possible to create this redirecting route in Rails?
Is it possible to do a redirect in the routes file of a Rails app?
Specifically, I'd like to forward /j/e to /javascripts/embed.js
Right now the only way I can think to do it is to create a j ...
9
votes
4answers
1k views
Block requests from *.appspot.com and force custom domain in Google App Engine
How can I prevent a user from accessing my app at example.appspot.com and force them to access it at example.com? I already have example.com working, but I don't want users to be able to access the ...
9
votes
6answers
961 views
How to display messages to the user after a POST + HTTP redirect
I’m using the PRG pattern to avoid multiple form submission. It has, however, a serious drawback — you cannot simply echo the confirmation message to the user (obviously, the user won’t see the page, ...
9
votes
3answers
23k views
Struts2 - How to do dynamic URL redirects?
I'm trying to have my struts2 app redirect to a generated url. In this case, I want the url to use the current date, or a date I looked up in a database. So /section/document becomes ...
9
votes
4answers
23k views
How do you redirect HTTPS to HTTP?
How do you redirect HTTPS to HTTP?. That is, the opposite of what (seemingly) everyone teaches.
I have a server on HTTPS for which I paid an SSL certification for and a mirror for which I haven't and ...
8
votes
1answer
57 views
.htaccess r=301 vs r=302
I am creating rules in my .htaccess for mobile, or bad pages etc...
I am using these rules:
rewriterules badpage /goodpage.html [r=302]
rewriterules iphone /iphone.html [r=301]
Which one is ...
8
votes
4answers
284 views
Block facebook from my website
I have a secure link direction service I'm running (expiringlinks.co). If I change the headers in php to redirect my visitors, then facebook is able to show a preview of the website I'm redirecting to ...