Quote:
Originally Posted by hellbomb
Kk i have several pages outside of vBulletin home directory, therefore even tho their are vBulletin powered pages the links will not work correctly, how can i use php to change all the links to the correct spot.
etc.
When clicking links on the page outside the vBulletin home forum. lets say adminco it goes to mywebsite.net/admincp i need it to go to mywebsite.net/forums/admincp
|
You can do manual rewrites of Apache (if you've got access to the httpd.conf) or you can just create individual folders, with a file inside them called "index.php" and in index.php put a header redirect.
So if you wanted /admincp to go to /forums/admincp you just make a folder called "admincp" and then add index.php file in there with this code:
PHP Code:
<?php
header('Location:/forums/admincp');
?>