simple domain redirect to URL

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • piku
    Senior Member
    • Mar 2004
    • 153

    #1

    simple domain redirect to URL

    i have a domain (ie. domain2.com) that is currently parked on domain.com persay. i'd like to redirect traffic thats going to domain2.com, to a static URL (ie. http://www.othersite.com/folder/). just wondering if anyone have done this before w/ cpanel/whm...? TIA.
    my signature was deleted. i miss my signature-filled-with-helpful-dathorn-links *sniff*sniff*
  • Andy
    Senior Member
    • Mar 2004
    • 257

    #2
    Yes in cpanel you can with the domain addon.
    I have it for one of my domains for my clients.
    Andy

    Comment

    • piku
      Senior Member
      • Mar 2004
      • 153

      #3
      aaahhh i'm doing through mod_rewrite right now w/ htaccess and parked domains--i'll try out the addon domains option. thanks andy.
      my signature was deleted. i miss my signature-filled-with-helpful-dathorn-links *sniff*sniff*

      Comment

      • piku
        Senior Member
        • Mar 2004
        • 153

        #4
        just an update, i just stuck to a "parked domain". then in /home/username/ dir. i added to the .htaccess file the following

        Code:
        Options +FollowSymLinks
        RewriteEngine on
        RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com [NC]
        RewriteRule ^(.*)$ http://www.domain2.com/dir/$1 [R,L]
        bare in mind that this only works if you have a unique IP addy
        my signature was deleted. i miss my signature-filled-with-helpful-dathorn-links *sniff*sniff*

        Comment

        Working...