如何在没有PHP或htaccess的情况下重定向联盟出站链接?

时间:2014-03-21 15:53:36

标签: redirect seo affiliate outbound

我想重定向出站联盟链接,在这个网站上没有PHP或htaccess的选项。

到目前为止,我总是使用

完成此操作
<?php
header( 'Location:' ) ;
?>

但就像我说这不再是一个选项,因为这个网站不再支持php或.htaccess了。

是否有替代解决方案,使用HTML?

2 个答案:

答案 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>