php WHMCS Custom附属公司重定向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WHMCS Custom附属公司重定向相关的知识,希望对你有一定的参考价值。

<?php
/**
 * Custom Affliates Redirects
 * © 2017 gofas.net
 *
*/
add_hook('AffiliateClickthru', 1, function($vars) {
	
	$affiliate_id	= (int)$vars['affiliateId'];
	$destination	= (string)'https://example.com';	// default destination after affiliate link click
	
	if ( $_REQUEST['page'] ) {							// page is the parameter name
		$destination = (string)$_REQUEST['page'];
		header( "Location: $destination" );
		exit;
	}
	if ( $vars['affiliateId'] === 1 ) {					// ID of affiliate
		$destination	= (string)'https://otherexample.com';
		header( "Location: $destination" );
		exit;
	}
	// default destination if not page parameter and not affiliate ID 
	else {
		header( "Location: $destination" );
		exit;
	}
});

以上是关于php WHMCS Custom附属公司重定向的主要内容,如果未能解决你的问题,请参考以下文章

jQuery进度条加载直到页面重定向

Laravel永久重定向

HttpClient 302重定向

删除 404 重定向上的所有 url 参数

来自表单输入的 CodeIgniter 重定向

php WHMCS服务器状态脚本