• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Xampp] Hosting 2 websites.

NilssoN042

Banned User
Joined
Sep 8, 2008
Messages
998
Reaction score
2
Location
Sweden, Helsingborg
Hello community. I want some help from somebody that knows XAMPP well.

I want to host two websites on one dedicated.

I host my otserver accpage in htdocs/
And my other website in htdocs/floop/

But when I forward my domain I forward it to my ip via DNS

So for example zerenia.net is forwarded to 85.25.120.15

But how should I forward the new domain to htdocs/floop/

There is a "stealth" action so I can make so the homepage that is hosted in htdocs/floop/ always will look like http://mydomain.com

But I want it to change for like http://mydomain.com/index.php.


I wounder if someone can help me?

If you need more information please tell me
 
you buy one domain for floop, and redirect to one web with this code:
Code:
<html>
  <head>
    <title>Tatuy's</title>
    <meta name="description" content="Aqui, alla">
    <meta name="keywords" content="Aqui,alla">
    <link rel="shortcut icon" href="..."></link>
  </head>
  <frameset rows="*" framespacing="0" border="0" frameborder="NO">
    <frame src="http://mydomain.com/floop/" name="web_frame_content" scrolling="auto" noresize>

  </frameset>
  <noframes>
    <body>
    </body>
  </noframes>

</html>

You can edit the title, description, etc. etc. :D!
 

Similar threads

Back
Top