Hi...
Need some help here...
I want my apache server to serve out pages, (both HTML or PHP) contained within a frame.
For example...
http://www.foo.com/myfile.html
myfile.html will appear inside a 2-row frameset in the bottom window frame. The top window is always there, defined at a global level.
I tried it out using Rewrite, but i think I didn't get the rules correctly. can someone help?
I did
RewriteEngine On
RewriteCond %{REQUEST_URI} !/scripts/
RewriteRule /(.*) /scripts/createframe.php?file=$1
I inserted $1 into the bottom <frame src=$_GET['file']>
What happens is that this created a recursion. How do I stop the recursion?
Any help or insights please.
D.