redirect

Redirect to non-www-url domain with ASP.NET?

This is not a duplicate post. I've looked through similar questions on SO but didn't find the solution to my problem. As someone has already suggested I should do the following to redirect www-url to non-www url (or vice versa): Here’s the IIS7 rule to remove the WWW prefix from all incoming URLs. Cut and paste this XML fragment into y...

Permanent redirect exclude a path.

I have the following: RewriteEngine On # Check if the host name contains a . (localhost won't) # Check if the host name starts with www # Check if the host name ends with .com # Check if the connection is secure RewriteCond %{HTTP_HOST} \. RewriteCond %{HTTP_HOST} !^www [OR] RwriteCond %{HTTP_HOST} !\.com$ [OR] RewriteCond %{HTTPS}...

Having huge redirect list in .htaccess a Problem?

Hi, I want to redirect every post 301 redirect, but I have over 3000 posts. If I list Redirect permanent /blog/2010/07/post.html http://new.blog.com/2010/07/23/post/ Redirect permanent /blog/2010/07/post1.html http://new.blog.com/2010/07/24/post1/ Redirect permanent /blog/2010/07/post2.html http://new.blog.com/2010/07/25/post2/ Redir...

Show errors before redirect

Hi all! When i do a redirect, no errors are shown. I use codeigniter framework and there's error_reporting(E_ALL); ini_set('display_errors', 1); in my index.php file. When something is breaking in my code(e.g.some 'undefined index' error) and i do a redirect to another page - the error isn't showing. How to avoid this - break the red...

Wicket: how to redirect to another page?

How do I redirect to another page using Wicket? IIRC, some exception has to be thrown in the constructor, but I don't remember which one. Thanks in advance. ...

If condition for redirection in jquery?

Edit... Someone suggested I do it differently... If I were to use .htaccess, would this work? Options +FollowSymlinks RewriteEngine on RewriteRule ^chapter http://mysite.com/chapter/1 I'm just using basic javascript here, but I wanted to find out if there's a way to add it to my jquery file so that the redirection will happen if th...

Membership API redirects me to login page after successful authentication

Hello! Im using Membership API with forms authentication. Sometimes, when a user try to go to login.aspx page (for example www.mysite.com/login.aspx), there is a redirect event happen and the adress bar shows something like this www.mysite.com/Login.aspx?ReturnUrl=Login.aspx Please draw an attention on that: User enter his login and p...

Redirect users to the pool page after they vote

how redirect the user to same poll page instead of homepage after voting ? . I'm unable find which function to override. ...

Permanent redirect of subdomains to www. in lighttpd?

I want to redirect all subdomain paths on domainxyz.com to www.domainxyz.com except for cdn.domainxyz.com and ad.domainxyz.com. To clarify: I want for example abc.domainxyz.com/cat.php?id=23 redirect to www.domainxyz.com/cat.php?id=23. How do I do this in lighttpd? ...

Redirect to another server - ASP MVC

Hello, Does anybody know how to redirect to another server/solution using ASP.NET MVC? Something like this: public void Redir(String param) { // Redirect to another application, ie: // Redirect("www.google.com"); // or // Response.StatusCode= 301; // Response.AddHeader("Location","www.google.com"); // Response.End(); ...

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 want to keep the SEO intact by using 301 redirects, however, I am not sure how to go about doing such a large redirect (301). Here is an exam...

Problem when using Javascript to redirect user on form submit

Hi, I have a webpage on which I have a form. This form contains a button and a textbox. When the button is clicked or when the form is submitted I would like to take the text from the text box and append it to a url. The code looks like this: <form name="askaquestion" id="ask-a-question" onSubmit="window.location.href='http...

PHP Redirection (301) hiding query string

Hi there, I'm trying to redirect a page using PHP (I think it has to be PHP as opposed to .htaccess as there are a lot of pages involved and the information required to do the redirect is held in a datbase). The page i'm trying to to a redirect from is already re-written, and looks like: www.example.com/shop/deptartment/section/produc...

htaccess error with redirect when not starting with variables

RedirectMatch (.*).html$ index.php?id=$1 This solution doesn't seem to work and I cant figure out why. Altho, this: RedirectMatch (.*).htm$ $1.html Worked. What wrong with variable not being the first literal in replacement url? ...

How do I redirect a subdirectory and all files in it to the root using htaccess?

I'm trying to redirect all requests for a subdirectory and any files in it to the root directory, using htaccess. Currently I have redirect 301 /directory/ / But this redirects to the root with the file name requested appended to it.. ie www.domain.com/directory/this.html redirects to www.domain.com/this.html I don't want it to request...

Using mod_rewrite to redirct using different get variables

Using mod_rewrite, how would I take urls like these: www.example.com/?foo=hello www.example.com/?foo=world and redirect them to urls like these: www.example.com/hello/ www.example.com/world/ Thanks ...

Server Redirect from example.html to script.php?url=example

I have a really convoluted website that I need to work on. I was thinking on creating a single "home" php file that includes the main stuff (menu, sidenav, head, etc) and inserting the content for every page. I already have the content from all the pages separated so I have a duplicate of the site where all the html files have only the i...

Django authentication - wrong redirect url to login page

When a user is not logged I'm trying to enter areas of site for authenticated users only I should be redirected to my login site with ?next= and here my LOGIN_REDIRECT_URL from settings. But instead of /users/login in my address bar /accounts/login is displayed. What should I change to get the right url ? settings : AUTH_PROFILE_MODULE...

Using .htaccess for multiple redirects.

I have a web site that has the file extension of .php. As of right now I have it setup to rewrite that server side using .htaccess to drop the .php from the file name making it example.com/filename, I also have it set to redirect/filename to /filename/. I now want to make it redirect /filename.php to /filename/. How can I do this? What ...

htaccess 301 redirect entire site but with exceptions

I am trying to create an htaccess file to redirect my entire site except with some exceptions, but I can't get it working. I need to redirect the entire thing, provide a specific redirect, and exclude two pages. Below is my non-working sample. Thanks! RewriteCond %{REQUEST_URI} !^/events/index.html RewriteCond %{REQUEST_URI} !^/calendar...