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.
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 ...
6
votes
3answers
270 views
In Ruby, How do I get the destination URL of a shortened URL?
In ruby how do I take this url http://t.co/yjgxz5Y and get the destination url which is http://nickstraffictricks.com/4856_how-to-rank-1-in-google/
5
votes
5answers
71 views
Is it possible to send a 401 Unauthorized AND redirect (with a Location)?
I'd like to send a 401 Unauthorized AND redirect the client somewhere. However:
if I do it like this:
header('HTTP/1.1 401 Unauthorized');
header('Location: /');
the server sends a 302 Found with ...
4
votes
2answers
262 views
Why does this cause an infinite request loop?
Earlier today, I was helping someone with an .htaccess use case, and came up with a solution that works but can't quite figure it out myself!
He wanted to be able to:
Browse to ...
4
votes
5answers
2k views
ASP.NET MVC - How to Preserve ModelState Errors Across RedirectToAction?
I have the following two action methods (simplified for question):
[HttpGet]
public ActionResult Create(string uniqueUri)
{
// get some stuff based on uniqueuri, set in ViewData.
return ...
3
votes
1answer
1k views
ASP HttpWebRequest and Redirect
OK, I have a client doing a POST to a server with some data. The server receives the post, and answers with a redirect. The problem is that the client does not redirects. Also, I've tried to check the ...
3
votes
1answer
342 views
Issue a redirect (HTTP 302) to act on _top frame without using Java script
I need to redirect the top frame on a form post and it should work irrespective of javascript and across all major browsers.
I can redirect to a page with a link and its target attribute set & ...
2
votes
1answer
41 views
Add xml to http redirect
I have a situation whereby I need to redirect a user from a page on my server to a page on another server. In this redirect I need to also send some xml to the server I am redirecting to. This xml ...
2
votes
1answer
253 views
ASP.NET httpRedirect : redirect all pages except one
I use this code in the web.config in one of the folders of my website to redirect all pages to the root (I won't to close this section).
<?xml version="1.0" encoding="utf-8"?>
...
2
votes
2answers
150 views
will javascript tag's src attribute follow http redirects in all browsers
Let's say, a javascript tag's src attribute points to a redirect:
<script src="http://foo.com/foo.js"></script>
where http://foo.com/foo.js is a 301 redirect to ...
2
votes
4answers
403 views
2
votes
2answers
396 views
Posting comments to a wordpress-blog in Android
I am working on a module that allows users to post comments on a blog published on Wordpress. I looked at the HTML source for Post-Comment-Form displayed at the bottom of a blog entry (Leave a Reply ...
1
vote
0answers
134 views
HTTPClient - Java Web page Crawling - Twitter Short URLs - Content-based redirection on http-equiv=“refresh”
This is a question based on content based redirection, i.e. the URL does not send you to a new page via a 3xx redirect/moved, but rather the page content itself contains a redirect, such as a ...
1
vote
1answer
82 views
mod_rewrite: rewrite rule or redirect?
If I use an internal rewrite rule to change my web page names instead of a redirect,it appears that I will have a duplication of content? For example, if I rewrite /oldpage.html to ...
1
vote
2answers
72 views
Why doesn't this redirect work?
Why doesn't this redirect work?
$menu = 'menu';
$item = 'item';
header('HTTP/1.1 303 See Other');
header("/{$menu}/{$item}/");
1
vote
2answers
144 views
Removing URL duplicates when using pretty urls
I'm using pretty URLs in my web app, one example is 'forum/post/1' which invokes PostController in Forum module, which loads a post with id=1. This is what I need but that post is also accessible from ...
1
vote
1answer
522 views
How to append cookie value to end of response Location header with Apache?
I have a page that issues an HTTP redirect. I need to append the current session id (jsessionid) to the end of the HTTP redirect to pass this id as a GET parameter in the redirect.
Can mod_header's ...
1
vote
1answer
181 views
Oauth server redirect on success or error, use HTTP redirect or Javascript?
All Oauth providers I've authenticated with will redirect you to a page that says something like "Thanks, redirecting you..." and uses javascript to redirect you to the supplied redirect_uri.
I would ...
1
vote
0answers
368 views
iis 7 relative redirect with get parameters
I have a http redirect in iis7 to send request to another domain. If url is something like http://www.example.com/news/ it's ok but if i try http://www.example.com/news/?id=3 then get parametes is ...
1
vote
3answers
274 views
Redirecting old asp files to new aspx (asp.net) files (Permanent Redirect, SEO)
I upgraded my site from asp to asp.net.
This means that all of my previous asp files became obsolete.
I don't want to lose my Google Ranking of the old pages.
What is the proper way to redirect?
I ...
1
vote
2answers
268 views
Redirect all HTTP-Requests with *.asp to one single file
Is it possible on an IIS to redirect all files with the file extension .asp to one single file (i.e. switch.php, switch.cfm) and how?
Thx in advance for the upcoming solutions :)
EDIT:
version of IIS ...
1
vote
3answers
2k views
Setting up HTTP Redirect for SEO in IIS7
I want all requests to http://mydomain.com to be 301 redirected to http://www.mydomain.com for SEO purposes.
In order to do this, can I use IIS7's HTTP redirect method? I tried setting the HTTP ...
1
vote
2answers
1k views
Sending info with a HTTP redirect that the browser should send to the redirected location?
Is this possible.. for example, imagine I respond to a request with a 302 (or 303), and I inform the browser to do a request to a given location.. is there a header that I can send with the HTTP 302, ...
0
votes
0answers
12 views
How to set up wordpress to use numeric unique page id inside the url
I'm setting up a site. It's running wordpress. As the links structure may change over time (SEO) I want urls to be distinguishable even if I scramble the whole tree structure. In other words I want ...
0
votes
1answer
40 views
how to get referrer from a redirected url
I have an url
domain.com/a
which redirects to
domain.com/controller/action/a .
How do I get the referrer (i.e domain.com/a) in my action for domain.com/controller/action/a ?
One option was to ...
0
votes
0answers
17 views
Set Referrer Information on Rails Redirect
I'm working on a Rails app that redirects users from my Rails app to an outside site. I'd like to be able to track those users that arrived from my Rails app to that site, but on Google Analytics all ...
0
votes
1answer
28 views
Django - ValueError on HttpResponseRedirect
i have this view: http://dpaste.com/661912/ on which i have an error: ValueError at /fattura/save/ ... the view didn't return an HttpResponse object. i dont know why since i have on the same project ...
0
votes
2answers
155 views
HTTP_REFERRER and Location redirect
I have been looking for a while here and can't find an answer to my specific question.
In 100's of places on my site I am redirecting to an error page via a header-location redirect.
...
0
votes
1answer
86 views
IIS Default Redirect
In IIS7, if the default redirect at the website level is a relative path, how to make the default redirect is on https and not http.
Currently if the host is: abc.com and the login page is ...
0
votes
0answers
113 views
httpRedirect to given destination in web.config
I've a requirement in MVC like, if any one enter the site or requests any url , then redirect to destination url in the same web site.
i have done in the web.config
...
0
votes
1answer
128 views
Cnames and ssl - ok if both names have ssl?
Not sure if it's best to ask here or over at serverfault. But if I used a cname to point https://www.example.com to https://www.domain.com would the browser still throw an error about example.com ...
0
votes
2answers
189 views
How To Check IIS 7 HTTP Redirects [closed]
We have a webserver running Windows Server 2008 and IIS7 that has had updates upon updates for years on it. Some sub-folders and files have http redirects to other URLs, created with the HTTP Redirect ...
0
votes
2answers
140 views
Hide URL for server side redirect
Configuration: Server is iplanet 6.1, client side browser is ie6
I have a url: http://example.com/signOnTodef?cmd=login
This request is basically received by the iplanet 6.1. Here I have a plugin ...
0
votes
4answers
880 views
Passing a variable from [HttpPost] method to [HttpGet] mentod
I am redirecting the view from [HttpPost] method to [HttpGet] method. I have gotten it to work, but want to know if this is the best way to do this.
Here is my code:
[HttpPost]
public ActionResult ...
0
votes
0answers
16 views
Find out where to point a shortened url in asp
how can I get a url address of a shortened, for example, I have a shortened, this is ...
http://goo.gl/voVSq she redirects to the main page of the stack over flow
More like through the asp, I could ...
0
votes
1answer
121 views
301 Redirect for URLs with Variables
I am doing 301 redirects for old URLs in a situation where I can't use Web.Config at all, so there's no rewrite module capability. So I have been using this simple code on individual files:
...
0
votes
1answer
85 views
Different Like-Buttons in “www.example.com/” and “www.example.com/Default.aspx”
I have a "Like" and a "+1" Button on my Startpage.
But when you enter "www.example.com" you get different like-stats and +1-stats als when you get "www.example.com/Default.aspx".
But in the ...
0
votes
1answer
79 views
ASP Redirect Response
Where in the code would I place the response.redirect() code so that it would execute after a user selects the submit button to send their data? My goal is to redirect users after submission to a ...
0
votes
0answers
114 views
Redirect asp(/index.asp?pagename=mar+10) to php page using htaccess
i'm facing problem with redirecting a page. I have a website which is written by asp and currently has been rebuild with wordpress. The problem is that google cached the old asp site which doesn't ...
0
votes
2answers
217 views
Redirect to a new URL without browser issuing a second request?
Is there a way for a web server to issue a redirect that does not require the browser to issue a second request?
For example, the browser requested http://www.mysite.com/lion, but the server wants ...
0
votes
1answer
117 views
MCMS 2002 - How to implement redirection
Our company's website is built on MCMS 2002. We are on IIS6 and we need to redirect our site users to our new website in another domain. What are the options for redirection in MCMS 2002?
mcmsfaq.com ...
0
votes
2answers
182 views
How can I redirect a HTTP POST request immediately after the headers are processed?
On Windows CE, I am currently in a situation where we implement a simplistic web server from scratch. The predominant use of this server will be in a one-to-one USB RNDIS connection. The server is ...
0
votes
1answer
61 views
301 redirect from previous asp verion
I have found this. http://geekswithblogs.net/shahed/archive/2007/10/23/116278.aspx
Can some help me organise this into an aspx/aspx.cs file as I'm not overly familiar with all the code here.
Hi,
I ...
0
votes
2answers
286 views
What is the recommended method of HTTP Redirection from multiple URLs to one URL?
I have a website that has a number of URLs that people use to connect to that site (uses the bindings on the IIS website and everything works as intended):
http://www.sample.com
http://sample.com
...
0
votes
1answer
121 views
How do I stop a http redirect from corrupting my maven repository?
I use the m2eclipse plugin, and I commute on a ferry with wifi service provided by Boigo. When I try to access anything via http on the ferry, if I haven't already logged in any request gets ...
0
votes
4answers
415 views
redirecting postdata
I've recently upgraded a page on our server from classic asp to asp.net
The page recieves postdata and saves it to a file. The page is used by many of our clients and the url (to the asp page) is ...
-1
votes
4answers
137 views
header in php to redirect the page
i want to redirect the page by using header tag but its not working