MyBB Community Forums

Full Version: Is this possible?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible somehow to do so every link on my site which goes to link.php will instead go to link2.php.

Maybe by a code in .htaccess or something?

I do not want to change all the templates, I am too lazy for that.

Hope this is possible somehow.
Use a redirect command (in Javascript/HTML) in your link.php file that redirects to link2.php
myBB has it's own Search and replace function e.e
Well, if your lazy, then just run a query:

update mybb_templates set template = replace(template, 'link.php', 'link2.php');