The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
how can i ridirect from my forum page to....
how can i redirect my forum from http://www.desitracker.com to http://www.desitracker.com/dynamics or http://www.desitracker.com/portal.php
like vbuleltin.org ex: when i goto http://www.vbulletin.org it redirect me on https://vborg.vbsupport.ru/portal.php |
#2
|
|||
|
|||
Basically it's a 301 permanent or 302 temporary redirect that does it. How you implement it depends on what web server you're using. If it's on nix usually people do it in the htaccess file, or you can make index.php the default in http://www.desitracker.com/ and then use that as php to return the redirect header to the other like
Code:
function redirect301(&$redirto) { header( "HTTP/1.1 301 Moved Permanently" ); header( 'Location: http://www.desitracker.com/dynamics'); exit(); |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|