我想重定向出站联盟链接,在这个网站上没有PHP或htaccess的选项。
到目前为止,我总是使用
完成此操作<?php
header( 'Location:' ) ;
?>
但就像我说这不再是一个选项,因为这个网站不再支持php或.htaccess了。
是否有替代解决方案,使用HTML?
答案 0 :(得分:1)
在</head>
<meta http-equiv="refresh" content="0; url=http://youraffiliatelink.com/" />
答案 1 :(得分:0)
在页面标题中使用此html代码:
<meta http-equiv="refresh" content="0; url=http://example.com/" />
或使用这样的JavaScript:
<script type="text/javascript">
window.location.href = "http://example.com"
</script>