Results 1 to 4 of 4
  1. #1

    HTACCESS - Need help in Permanent Redirection Issue

    hello gurus,

    as part of my learning, i've encountered the subject htaccess.

    there is one issue i wanted to ask and clear about, if it's possible to accomplish.

    facts:

    i have 2 separate domain on the same server.

    -country based domain, http://national-site.ph
    -regional based domain, http://regional-site.ph

    i want to redirect my regional based domain name to a sub-domain of my country based domain.

    it's like this,

    http://regional-site.ph

    shall be redirected to

    http://regional-site.national-site.ph

    and after redirection, the address bar in the browser shall display

    http://regional-site.ph instead of

    http://regional-site.national-site.ph

  2. #2
    Hi you use in 301 redirection for details as under:

    PHP Redirect

    <?
    Header( "HTTP/1.1 301 Moved Permanently" );
    Header( "Location: http://www.new-url.com" );
    ?>

    ASP Redirect

    <%@ Language=VBScript %>
    <%
    Response.Status="301 Moved Permanently"
    Response.AddHeader "Location","http://www.new-url.com/"
    %>

    ASP .NET Redirect

    <script runat="server">
    private void Page_Load(object sender, System.EventArgs e)
    {
    Response.Status = "301 Moved Permanently";
    Response.AddHeader("Location","http://www.new-url.com");
    }
    </script>

    JSP (Java) Redirect

    <%
    response.setStatus(301);
    response.setHeader( "Location", "http://www.new-url.com/" );
    response.setHeader( "Connection", "close" );
    %>

    CGI PERL Redirect

    $q = new CGI;
    print $q->redirect("http://www.new-url.com/");

    Ruby on Rails Redirect

    def old_action
    headers["Status"] = "301 Moved Permanently"
    redirect_to "http://www.new-url.com/"
    end

    Redirect Old domain to New domain (htaccess redirect)

    Create a .htaccess file with the below code, it will ensure that all your directories and pages of your old domain will get correctly redirected to your new domain.
    The .htaccess file needs to be placed in the root directory of your old website (i.e the same directory where your index file is placed)

    Options +FollowSymLinks
    RewriteEngine on
    RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]

    Please REPLACE www.newdomain.com in the above code with your actual domain name.

    In addition to the redirect I would suggest that you contact every backlinking site to modify their backlink to point to your new website.

  3. #3
    @SASA Techno

    thanks... can i try this and apply while using wamp?

    or do i need to create a real site, so i may test this functionality?

  4. #4
    Yes you use it but make sure which language your site crate like a PHP Or HTML. only for htaccess.

Similar Threads

  1. .htaccess redirection
    By smrtalex in forum Hosting Security and Technology
    Replies: 3
    Last Post: 08-26-2009, 04:35 AM
  2. Namecheap permanent address redirection
    By cyberderf in forum Domain Names
    Replies: 1
    Last Post: 05-10-2006, 04:42 PM
  3. htaccess and redirection
    By 3-rx in forum Web Design and Content
    Replies: 9
    Last Post: 05-21-2005, 10:00 PM
  4. .htaccess redirection - How to?
    By webzila in forum Web Design and Content
    Replies: 2
    Last Post: 01-04-2004, 04:06 PM
  5. Need .htaccess redirection
    By Spunky in forum Hosting Security and Technology
    Replies: 6
    Last Post: 05-21-2002, 05:38 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •