Force access to subdomain from domain?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • GarryJones

    Force access to subdomain from domain?

    I have an existing website at www.scfmotion.se I have now activated a
    blogg tool which has placed the blogg section at blogg.scfmotion .se. I
    want to force users to click on a link on www.scfmotion.se to get to
    blogg.scfmotion .se Any php tricks to do this?


    The tool created a folder called www.scfmotion.se/blogg with 3 files
    called index.html, rss.xml and rss.xsl.

    The code for this index.html file is...

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
    <html>
    <head>
    <title>SCF Motion Blogg</title>
    <meta name="generator " content="iloblo g 1.0"/>
    <link rel="alternate" title="SCF Motion Blogg Feed"
    href="http://blogg.scfmotion .se/rss.xml" type="applicati on/rss+xml"/>

    <style type="text/css">
    body
    {
    margin: 0px;
    padding: 0px;
    }
    </style>

    </head>
    <frameset cols="100%">
    <frame src="http://iloblog.scfmoti on.se/blogg?Home"/>
    </frameset>
    </html>

    *************** *************** ******
    Any help greatly appreciated

    Garry Jones
    Sweden

  • macca

    #2
    Re: Force access to subdomain from domain?

    I dont understand. why not just use a normal link?

    Or a php header redirect?

    Comment

    Working...