hello my 1st post, hello all 👋
ok heres my problem, i want this url http://shell001.vdis.de/~X-Bomb/logs/ to match with the rest of our website, since i dont know / restricted in editing the templates for that i cant modify its look. (if some1 knows how please tell me)
anyway in an attempt to get around the problem i have created a page called index.php
<link rel="stylesheet" type="text/css" href="/style.css" />
<?php
include("header.htm");
?>
<?php
@include("http://shell001.vdis.de/~X-Bomb/logs/");
?>
as u can see the page is made up of 2 sections, the top part is just a header file and not really important, the second part is a url to a the directory page i want to modify (located on another remote server). the page displays correctly as i want - with the css file i included, but i have a problem explained below.
now when i upload my index.php and open it up here:
http://logs.so-lid.co.uk/index.php (note: its on another server)
i suffer the problem that the urls to the log files in the directory are now incorrect and non downloadable, i want to keep the original urls so they can be downloaded.
for example: http://logs.so-lid.co.uk/8server.log.06Jul2004 should actually be http://shell001.vdis.de/~X-Bomb/logs/8server.log.06Jul2004
is there anyway around this or any alternative suggestions, thanks alot!