5 replies
  • WEB DESIGN
  • |
Is it possible to forward a link such as:

Yourwebsite.com/this_page
to
anotherwebsite.com/final_page

I know how to forward a domain from the registrar. Just not sure if this scenario is possible.

Thanks for any advice.

Sally
#redirecting
  • Profile picture of the author pdjsolutions
    well you can use a meta refresh tag, where you can even put a time limit so that it will wait on yourwebsite.com/this_page for x seconds and then redirect to anotherwebsite.com/final_page .

    Google it out - Meta refresh tag and add it to the head section of the index.html file for yourwebsite.com/this_page .


    Hope this helps.

    There are other ways though. but this 1's a quick and easy 1 .
    {{ DiscussionBoard.errors[880868].message }}
    • Profile picture of the author smseick
      Thank you for the quick response. I'll give it a try!!
      {{ DiscussionBoard.errors[880874].message }}
    • Profile picture of the author mlevenhagen
      There are a couple of different types of redirects. Permanent 301 or Temporary 302.. so if this is a permanent move, use 301. (important for seo)

      I like to use .htaccess redirects; they redirect quick and they are easy to set up. Just go into your root folder (public_html or?) and find the .htaccess file or create one if it doesn't exist.

      Then simply go to the bottom of whatever code is there, leave a space and enter this:

      redirect 301 /this_page.html http://anotherwebsite.com/final_page.html

      That's it! Slick and Fast.

      HTH!
      Signature

      ~ Matt Levenhagen
      Blog: Niche Marketing
      Latest WSO: Check Out Conversions Academy!

      {{ DiscussionBoard.errors[880899].message }}
  • Profile picture of the author dawnpeterson
    Hi,

    The easiest way is to put the following code on the index.html page. (nothing else)

    <html>
    <script>
    location = "your url goes here";
    </script>
    </html>

    Dawn.
    {{ DiscussionBoard.errors[886558].message }}
  • Profile picture of the author smseick
    Thanks everyone!!
    {{ DiscussionBoard.errors[1022295].message }}

Trending Topics