如何停止从子域重定向到主域?

时间:2015-04-01 08:21:41

标签: php .htaccess mod-rewrite redirect subdomain

我有一个网站 - http://bulletfootball.com/,我有一些关联合作伙伴,他们从一些社交媒体网站向我发送访问者访问我的网站,例如:ao.bulletfootball.com是我的联属合作伙伴的子域名,使子域的托管目标与主域相同,以便子域可以从主域获取所有内容(内容,设计等)。我为我的联盟合作伙伴创建了子域名,因为我想跟踪我的联盟合作伙伴有多少观看次数和广告点击次数。

现在的问题是,当用户使用ao.bulletfootball.com这样的子域名访问我的网站时,当有人点击任何链接/帖子/类别时,他们会重定向到主域名。

有一个我真正想要的例子,看看这个网站 - thecrazyfeed.com它是主要的域名。当你访问像sm.thecrazyfeed.com这样的子网站的网站,然后点击任何链接/帖子/类别,然后查看子域名下的链接,这就是我想要对我的网站做什么。

这是我的.htaccess文件:

# BEGIN W3TC Browser Cache
<IfModule mod_deflate.c>
    <IfModule mod_headers.c>
        Header append Vary User-Agent env=!dont-vary
</IfModule>
AddOutputFilterByType DEFLATE text/css text/x-component application/x-javascript application/javascript
text/javascript text/x-js text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-
icon application/json
    <IfModule mod_mime.c>
        # DEFLATE by extension
        AddOutputFilter DEFLATE js css htm html xml
    </IfModule>
</IfModule>
# END W3TC Browser Cache
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

提前致谢:)

1 个答案:

答案 0 :(得分:0)

我相信你的问题不在于重定向,而在于你的链接呈现方式。当您应该拥有没有域名的链接时,您的链接包括域名,例如http://bulletfootball.com/category/league/。例如,上一个链接应为/category/league/

这样,链接将引用从中下载页面的域,无论它是哪个域。