190
Hey everybody,
(i think my original post dissapeard when I submitted it, so I am posting this again)
I think I figured out a way to make a simple shorturls hack...
-create a frameset, with only one frame window. The one frame window will fill up the entire screen. Make sure you set the frame and frameset to "noscroll" and "noresize". Then have index.php load into this main frame. The site should appear as normal, except that is is loading into this giant invisible frame...and the frameset hides the long urls...so all that you end up seeing is
http://www.domain.com.
seems to work for me so far...can anyone think of any cons to this idea that I may not have thought of?
this is the code of the index.htm frameset file...
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<frameset rows="100%,0%" cols="*" frameborder="no">
<frame src="index.php" name="mainFrame" frameborder="no" scrolling="no">
<frame src="bottom.htm" frameborder="no" scrolling="no">
</frameset>
<noframes><body>
</body></noframes>
</html>
(ok, actually there are two frames in the frameset, but the one that has a dimension of 0% is called bottom.htm)
Jeff
edit: ahhh,ok, i am having some problems scrolling around on certain pages...so this means that I have to change the scroll options to yes, and may have to fiddle around with either the theme or certain module templates so that the page does not end up with a side scroll bar.