0

I have Dreamweaver CS3 and i was wondering if it is possible to make a html page go from idreesinc.com/research.html to research.idreesinc.com. Is it possible and if so how do i do it? I have to actually MAKE a page and not just a redirect. Thanks!

Jeff Hines
  • 3,511
  • 1
  • 19
  • 21
user1373771
  • 279
  • 4
  • 5
  • 11

2 Answers2

0

Create or edit a file in the root of your idreesinc.com site called '.htaccess'

Insert the line:

Redirect 301 /research.html http://research.idreesinc.com
Gareth
  • 5,693
  • 3
  • 28
  • 37
0

This isn't a "rewrite", it's a redirect - but it'll be the easiest for you as a beginner.

Easy with JS. Not the "best" way mind you, but the easiest.

Add this inside the tags or right after the opening tag.

<script type="text/javascript">
    window.location = 'http://research.idreesinc.com';
</script>

If you're looking for how to make a subdomain (subdomain.domain.com), you need to search: "How to make a subdomain"

Alex K
  • 14,893
  • 4
  • 31
  • 32