MyBB Community Forums

Full Version: Change page link?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I wanna change this link:

http://pulsiveforums.net/misc.php?action=payments

Too:

http://pulsiveforums.net/upgrade.php
How could i do this?

Thanks in advance!
^ are you using some kind of plugin?
(2013-06-21, 06:59 AM)skype Wrote: [ -> ]^ are you using some kind of plugin?

I'm using:

http://mods.mybb.com/view/mysubscriptions
you can use php redirect (eg.) or htaccess redirect (eg. RedirectPermanent upgrade.php misc.php?action=payments)
Can you break it down a bit more, like... where i would go to change the redirect link?
(2013-06-21, 07:10 AM)Kioshi Wrote: [ -> ]Can you break it down a bit more, like... where i would go to change the redirect link?

http://php.about.com/od/learnphp/ht/phpredirection.htm
I already looked at that, re-read what i just said.
you can make upgrade.php file with content like below and put a link for upgrade.php on the header
<?php

   header( 'Location: http://pulsiveforums.net/misc.php?action=payments' ) ;

?> 
Okay that makes more sense, thanks :-) was able to figure it out.
any plugin available for this ??
Pages: 1 2