Results 1 to 4 of 4

Thread: webpage redirection is not working

  1. #1
    Member rootuser's Avatar
    Join Date
    Jan 2005
    Location
    ***INDIA***
    Posts
    125

    Thumbs up webpage redirection is not working

    Webpage redirection is not working, For example from http://example.com to http://www.example.com is not working either with the built-in 301 redirect, or
    typing it in by hand, or using mod_rewrite.Any solutions please .

  2. #2
    Member brianoz's Avatar
    Join Date
    Mar 2004
    Location
    Melbourne, Australia
    Posts
    1,144
    cPanel/WHM Access Level

    Root Administrator

    Default

    Is mod_rewrite installed?

    Have you checked to see whether the 302 redirect is actually coming back? (use one of the public checkers to see what headers come back).

    You may have to redirect example.com/ rather than example.com.

    Redirection works fine here ...

  3. #3
    Member rootuser's Avatar
    Join Date
    Jan 2005
    Location
    ***INDIA***
    Posts
    125

    Default

    YA mod_rewrite installed, but redirection is not working here

  4. #4
    Member adept2003's Avatar
    Join Date
    Aug 2003
    Location
    ~ "/(extra|special)/data"
    Posts
    283

    Default

    Try the following:

    RewriteEngine on
    RewriteCond %{HTTP_HOST} .
    RewriteCond %{HTTP_HOST} !^www\.newdomain\.com [NC]
    RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

    this will permanently redirect everything except www.newdomain.com to www.newdomain.com
    Last edited by adept2003; 04-26-2005 at 03:19 AM.

Similar Threads

  1. Webmail redirection not working in IE...works in Firefox
    By Biotron2000 in forum cPanel & WHM Discussions
    Replies: 7
    Last Post: 06-04-2008, 09:53 AM
  2. /cpanel, /webmail and /whm Redirection stop working
    By omarias in forum cPanel & WHM Discussions
    Replies: 4
    Last Post: 05-11-2008, 03:32 AM
  3. cPanel 11 Redirection of non-www not working?
    By DeadManWalking in forum cPanel & WHM Discussions
    Replies: 0
    Last Post: 04-07-2008, 01:33 AM
  4. Replies: 0
    Last Post: 11-03-2006, 05:02 AM
  5. no / can not see webpage
    By promak in forum cPanel & WHM Discussions
    Replies: 2
    Last Post: 06-19-2003, 07:24 AM