1
mharoun
Is there is a way I can hide the web site URL?
  • 2004/4/5 18:46

  • mharoun

  • Just popping in

  • Posts: 59

  • Since: 2004/3/6 1


Before posting this question, I searched the Forum and I couldn't find an answer to it!

Is there is a way I can hide the web site URL?
I mean what ever after the root address:
e.x:

http://www.mywebsite.com/html/modules/news/
I need it to looks:
http://www.mywebsite.com/

Thanks

2
meme
Re: Is there is a way I can hide the web site URL?
  • 2004/4/5 19:29

  • meme

  • Quite a regular

  • Posts: 271

  • Since: 2002/12/10


try iframe in theme.html

3
OldSwede
Re: Is there is a way I can hide the web site URL?
  • 2004/4/5 21:05

  • OldSwede

  • Just popping in

  • Posts: 26

  • Since: 2003/8/15


one more way is, call from your index.html or index.php from root this page (main.html):
<html>
<
head>
<
title>your title</title>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<
script type="text/javascript">



//Input the IDs of the IFRAMES you wish to dynamically resize to match its content height:
//Separate each ID with a comma. Examples: ["myframe1", "myframe2"] or ["myframe"] or [] for none:
var iframeids=["myframe"]

//Should script hide iframe from browsers that don't support this script (non IE5+/NS6+ browsers. Recommended):
var iframehide="yes"

function dyniframesize() {
var 
dyniframe=new Array()
for (
i=0i<iframeids.lengthi++){
if (
document.getElementById){ //begin resizing iframe procedure
dyniframe[dyniframe.length] = document.getElementById(iframeids[i]);
if (
dyniframe[i] && !window.opera){
dyniframe[i].style.display="block"
if (dyniframe[i].contentDocument && dyniframe[i].contentDocument.body.offsetHeight//ns6 syntax
dyniframe[i].height dyniframe[i].contentDocument.body.offsetHeight;
else if (
dyniframe[i].Document && dyniframe[i].Document.body.scrollHeight//ie5+ syntax
dyniframe[i].height dyniframe[i].Document.body.scrollHeight;
}
}
//reveal iframe for lower end browsers? (see var above):
if ((document.all || document.getElementById) && iframehide=="no"){
var 
tempobj=document.alldocument.all[iframeids[i]] : document.getElementById(iframeids[i])
tempobj.style.display="block"
}
}
}

if (
window.addEventListener)
window.addEventListener("load"dyniframesizefalse)
else if (
window.attachEvent)
window.attachEvent("onload"dyniframesize)
else
window.onload=dyniframesize

</script>
</
head>
<
style>BODY {scrollbar-3dlight-color:#8BAECF;
scrollbar-arrow-color:#fc9b00;
scrollbar-darkshadow-color:#2E5275;
scrollbar-face-color:#26425C;
scrollbar-highlight-color:#2E5275;
scrollbar-shadow-color:#2E5275;
scrollbar-track-color:#000000;}
</style
<
body bgcolor="#336799">
<
iframe id="myframe" src="xoopsroot/index.php" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0" style="overflow:visible; width:100%; display:none">
</
iframe>


</
body>
</
html>


the colors are adj. for theme-3d-blue

you also can include a java-script to hide the browser
status-bar.

try it on:
http://oldswe.de/main.html
and
http://oldswe.de/php/


4
mharoun
Re: Is there is a way I can hide the web site URL?
  • 2004/4/6 13:54

  • mharoun

  • Just popping in

  • Posts: 59

  • Since: 2004/3/6 1


Thanks OldSwede and meme:

I'm fairly new in this biz. Would you kindly explain little bit more?

Is all what I need to do is to call that page from index.html or index.php?

I never used Iframe before

Login

Who's Online

127 user(s) are online (85 user(s) are browsing Support Forums)


Members: 0


Guests: 127


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits