Redirect without a Page Node

trilogy33

Well-known member
Hmm, putting this here because it's not specifically an XF thing, more of a general question...

How would you best go about creating a folder to point to an external site? I'd like for example:

xenforo.com/mypage
and
xenforo.com/community/mypage

^ both these to point to:

anothersite.com/blahdeblahblah

Don't want to use page nodes (xenforo.com/community/pages/thing) to keep the URL short.

So what's the best way to go about it?
Rig something up in cPanel as a forwarder...right?
Many thanks :)
 
I do it through htaccess...
Code:
Redirect /donate/ https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9ZM3UCJJASJQG
Redirect /donate https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9ZM3UCJJASJQG
 
I do it through htaccess...
Code:
Redirect /donate/ https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9ZM3UCJJASJQG
Redirect /donate https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=9ZM3UCJJASJQG
Awesome, thought so. Thank you. :)
 
Top Bottom