The http-status-code-301 tag has no wiki summary.
11
votes
5answers
1k 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 ...
8
votes
1answer
1k views
Client Web Browser Behavior When Handling 301 Redirect
The RFC seems to suggest that the client should permanently cache the response:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
10.3.2 301 Moved Permanently
The requested resource has ...
7
votes
4answers
1k views
http redirect: 301 vs. 302 (temporary vs. permanent)
Is the client supposed to behave differently? How?
5
votes
4answers
160 views
How long do I need to maintain old URLs?
Ok, I know it is best practice that once you change or remove a page URL, to redirect that url to the new relevant URL.
But for how long? forever?
For example, I am using Google website optimizer to ...
5
votes
1answer
419 views
How do you redirect in ColdFusion and control the status code (i.e. 301 instead of a 302)
This code does a redirect, but uses a 302 status code:
<cflocation url="http://stackoverflow.com" addToken="no" />
I found this on the Internet, but I think it only works in ColdFusion8. I ...
5
votes
3answers
2k views
Rails redirect_to “www.somewebsite.com” with GET/POST parameters?
I'm trying to issue a redirect_to in one of my controllers to a fully qualified URL + I want to pass in some parameters
In the controller for site A I do:
redirect_to: ...
5
votes
1answer
645 views
301 redirects in Grails
I'm currently doing my Grails 301 URL-redirects using the following quite cumbersome "servlet style" method:
def action = {
...
if (shouldRedirect) {
response.status = 301
...
4
votes
1answer
52 views
301 Redirects in PHP: Do I need to explicitly tell it that it's a 301?
This one should be easy...
Do I need to explicitly tell PHP that I want to do a 301 redirect? Like this...
<?php
header("HTTP/1.1 301 Moved Permanently");
header("Location: ...
4
votes
3answers
206 views
Pretty URLs Vs. Duplicate Content
I'm trying to clear up a grey area about this much talked about topic...
Like most devs, I've made some pretty URLs with mod_rewrite. My sites internal links point to the pretty URLs and things are ...
4
votes
2answers
332 views
301 Redirect from main domain (www and non-www) to subdomain
I need to redirect from a main domain like mydomain.com or www.mydomain.com to sub.mydomain.com - and this needs to work for all requests, so mydomain.com/whatever goes to sub.mydomain.com/whatever.
...
4
votes
2answers
618 views
Mass 301 redirect using .htaccess
I am working on a large project that involves taking thousands (30,000+) static web pages and turning it into to a CMS.
The issue is many of these pages are duplicates within their directories. I ...
4
votes
1answer
783 views
CURL is not following 301 Redirects, what do I need to do?
I am using the CURL c++ api to get quotes from Yahoo's financial API. The curl api and my code seem to be working fine, however I am getting a "301" redirect message when I tell CURL to visit the url ...
4
votes
2answers
550 views
How do you do a 301 permanant redirect route in ASP.Net MVC
How do you do a HTTP 301 permanant redirect route in ASP.NET MVC?
4
votes
3answers
2k views
.htaccess 301 redirect of single page
After a site redesign, I've got a couple of pages that need to be redirected. Everything is staying on the same domain, just a couple of things have been reorganised and/or renamed. They are of the ...
4
votes
1answer
7k views
.htaccess redirect without changing address bar
I'm trying to write an .htaccess rule to redirect to a script, which further redirects somewhere else. Kind of like how URL shorteners work. However, I don't want the address bar to change during the ...
4
votes
3answers
662 views
Redirect 301 www.www.example.com
I'm using LAMP server, and I need to redirect requests like:
www.www.example.com to www.example.com and other variations like (wwww.example.com, etc)
I know I can do it in .htaccess, but I don't ...
3
votes
2answers
69 views
What is the more recommended way to 301 redirect in asp.net?
I've googled everything, and I've read a ton of different responses -- some I've tried to implicate with no success. I'm not a professional programmer, but I thank people in this forum for teaching ...
3
votes
3answers
90 views
Redirect all pages of one TLD to another
\I'm darn nearly pulling my hair out trying to figure this out tonight. I'm hoping someone can help me out.
I have 3 TLD's for a site, similar to the following:
www.domain.com
www.domain.org
...
3
votes
3answers
229 views
PHP Page redirect problem - Cannot modify header information
I have a page that displays various elements even if the id it's calling from the database does not exist or was deleted (which throws up all sorts of ugly errors along with search engines continuing ...
3
votes
2answers
379 views
Does PHP's file_get_contents cache a 301 status code?
If PHP does cache a permanent redirect:
For how long?
Can this period be changed?
I would also be interested in the default behaviour on this matter of Perl, Python, and any other languages used ...
3
votes
2answers
335 views
PHP 301 Redirect, Impossible?
I have been trying to do a proper 301 redirect and have failed to do so. No matter what i try, its always a 302 redirect.
Returns a 302:
http_redirect("urlgoeshere", '', false, HTTP_REDIRECT_PERM)
...
3
votes
2answers
621 views
ASP.NET and GoDaddy: redirect everything to https://www. version of the site
I have an ASP.NET website hosted on GoDaddy. I need to redirect (301) every request to https://www.mysite.com/whatever
So for example:
http://mysite.com will be redirected to https://www.mysite.com
...
3
votes
5answers
1k views
Asp.Net MVC 301 Redirects
We used to use ISAPI Re-Write (Infact its still on our server) although it doesnt work with ASP.Net MVC (Somthing to do with 'euxd' get param).
We need a relaiable way to implement simple 301 ...
3
votes
2answers
164 views
How do I redirect a subdomain to a different domain?
How do I redirect this:
www.sub.example.com
to this:
www.example2.com
How is this done -- 301? .htaccess? Can someone point me in the right direction please? My host is NearlyFreeSpeech and the ...
3
votes
2answers
1k views
Zend Framework: How to 301 redirect old routes to new custom routes?
I have a list of 100 routes belonging to our old (non-Zend Framework) website that I need to redirect to our new routes.
I am already matching/routing new custom routes in the Bootstrap file:
...
3
votes
2answers
312 views
Will PHPs fopen follow 301 redirects?
We have a piece of legacy code that (ab)uses fopen() calls to resources over HTTP: @fopen('http://example.com').
We want to move example.com to another host and then send 301 Permanently Moved.
...
3
votes
2answers
102 views
Should I use 301 for in-site redirects?
We would like to redirect to a localized version of our entry webpage if IP is detected to be from a certain country. We are using ASP.Net, GeoLite Country Db (it's a very small, 1Mb downloadable DB ...
3
votes
3answers
444 views
SEO: Duplicated URLs with and without dash “/” and ASP.NET MVC
after reading this article "Slash or not to slash" (link: http://googlewebmastercentral.blogspot.com/2010/04/to-slash-or-not-to-slash.html) on Google Webmaster Central Blog (the oficial one) I decided ...
3
votes
2answers
235 views
301 Redirect in asp.net
I have just uploaded a new website www.tapasya.co.in. When I tried to access, it showing me a blank page.
But when I tried using the complete path of the home page ...
3
votes
1answer
1k views
htaccess redirect for subdomains -> similarly-named subdirectories?
I'm restructuring a web site with a great deal of content currently parked at URLs that look like this.
http://string.domain.com/year/month/dd/string-pulled-from-title
For various reasons, I'd like ...
3
votes
2answers
2k views
Isapi Rewrite 301 redirect resolves as 404 - circular reference?
I'm trying to use IIS Isapi Rewrite to do the following...
I need seo-friendly URLs to be (silently) converted back to application friendly URLs like so:
RewriteRule ^/seo-friendly-url/ ...
3
votes
1answer
2k views
Do WCF REST services support HTTP 301 redirects?
Is it possible to implement a HTTP 301 redirect for a WCF REST Service so that URLs of the form:
http://server/customers/?name=John
redirects to
http://server/customers/324
(For the ...
3
votes
1answer
1k views
using .htaccess for REST does 301 redirect
I'm trying to build an extremely simple RESTful test rig for an app I'm working on. I'm using .htaccess to redirect urls to my controller script where I will parse the urls to handle the logic.
I ...
3
votes
5answers
6k views
301 redirect index.html to / or /index.php
Greetings,
I have just moved a website from IIS to Apache and am having a little trouble redirecting the index file without causing an infinite loop.
Both of these individually will cause a loop-
...
3
votes
3answers
5k views
301 Redirecting URLs based on GET variables in .htaccess
I have a few messy old URLs like...
http://www.example.com/bunch.of/unneeded/crap?opendocument&part=1
http://www.example.com/bunch.of/unneeded/crap?opendocument&part=2
...that I want to ...
3
votes
2answers
2k views
Multiple 301 Redirects after restyling a website (SEO)
We have updated our site recently; the old one had around 300 pages... the new one about 80 ;)
This because in the old structure we had, for every argument, many pages. Instead, now we have just one ...
3
votes
2answers
2k views
How do I use .htaccess to force www. while using Zend Framework
I want to force a www. prefix on my website by using a .htaccess 301 redirect. I am currently trying:
RewriteCond %{HTTP_HOST} ^mysite.com [NC]
RewriteRule ^(.*)$ http://www.mysite.com/$1 [L,R=301]
...
3
votes
2answers
464 views
Redirect rule in .htaccess is taking me to the wrong place
I'm having trouble with redirecting urls using the .htaccess file. This is what my .htaccess file looks like:
Redirect 301 /file-name/example.php http://www.mysite.com/file-name/example-001.php
...
2
votes
0answers
20 views
How long do browsers cache HTTP 301s?
I am debugging a problem with a HTTP 301 Permanent Redirect. After a quick test, it seems that Safari clears its cache of 301s when it is restarted, but Firefox does not.
When do IE, Chrome, Firefox ...
2
votes
1answer
42 views
What is the Path In .htaccess 301 Redirect Relative To?
I just redeveloped an existing site from the ground up. The old site used pure HTML while the new site will draw content from a database. Now I need to redirect the old pages to the new URL structure, ...
2
votes
2answers
49 views
Using 301/303/307 redirects for dynamic short urls
We're implementing a short url service where the redirection target will be changing daily. The urls will be accessed by mobile devices and will always be GET requests. I'm trying to understand which ...
2
votes
3answers
76 views
Is this the best place to use a 301 redirect to control which domain name is used?
I am using ColdFusion 9.0.1
I have a new site that is accessible through a few domains such as:
mydomain.com
www.mydomain.com
foo.mydomain.com
For SEO and tracking purposes, I want to make sure ...
2
votes
2answers
172 views
302 Redirect set by Magento, 9300 Crawling errors
I have a SEOMOZ Pro account, and after crawling we have 9300 Warnings, and 90% of them are because of 302 redirect errors.
It looks like its something with the compare feature.
URL:
...
2
votes
2answers
83 views
301 Redirect where 2 domains point to same IP?
I have 2 TLDs example.com and example.ie.
example.com and example.ie both point at the same IP address and pull the same content now we could get whacked with a ban hammer from Google for duplicate ...
2
votes
1answer
215 views
Why isn't my .htaccess 301 redirect rule working?
I use URL rewriting on my redesigned website to give my pages tidier URLs.
RewriteEngine On
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^$ index.php [L]
RewriteCond %{ENV:REDIRECT_STATUS} ^$
...
2
votes
1answer
141 views
Htaccess for static content not working!
So I setted up the following lines in order to redirect some requests to my static domain:
RewriteEngine On
RewriteBase /
RewriteRule ^img/(.*)$ http://static.mydomain.com/img/$1 [R=301]
...
2
votes
2answers
78 views
is it bad to use 301,302 redirects after form submission
Is it bad to use 301, 302 redirects after processing a form submission. Or is it only advised to use for pages that have "really been moved". I can show users nice urls if I use redirects.
Please ...
2
votes
1answer
581 views
Sharepoint 2010 search cannot crawl mediawiki site
Using Sharepoint 2010 enterprise search, we are trying to crawl our internal mediawiki based wiki site. Search fails with error : 'The URL was permanently moved. ( URL redirected to ... )'.
Since the ...
2
votes
1answer
772 views
How do I 301 redirect /Home to root?
Here is my route in Global.asax to remove /Home:
routes.MapRoute("Root", "{action}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
Well I need to ...
2
votes
2answers
308 views
301 Redirect with unicode characters - C#
I need to do a 301 redirect on a URL that may have Unicode characters in it.
HttpUtility.UrlEncode isn't doing what I need because if I encode the whole URL it encodes any ':' or '/'
...