View Single Post
  #2 (permalink)  
Old 16-07-04
Rich Rich is offline
Super Moderator
 
Join Date: Aug 2003
Posts: 2,451
Thanks: 0
Thanked 0 Times in 0 Posts
Rich is an unknown quantity at this point
The quick and dirty way of doing it would be to make index.php simply
Code:
<?
readfile('http://www.shopscifi.co.uk/catalog/index.php');
?>
though you would have to check all the paths on the catalog/index.php page include /catalog/ otherwise the images or links won't work correctly.

The other option would be to make index.php
Code:
<?
header('location: http://www.shopscifi.co.uk/catalog/index.php');
?>
which would redirect the user to the location page. That will save you from any path issues and I don't think having catalog in the url is really a big issue.
Reply With Quote