1

我正在使用特定的 wordpress 主题(冥王星)来制作网站。当我访问我的域 - www.tastersclubwhiskeyofthemonth.com时,主页不会显示任何内容,直到您点击其中一个菜单项。

如何让我的主页默认为特定菜单项@www.tastersclubwhiskeyofthemonth.com/ #whiskey-of-the-month

我尝试使用典型的 HTML 重定向,但它不适用于我的网站 - 可能是因为我所有的 url 在 .com 之后都有 #,或者可能是因为它是一个 wordpress 网站?: <meta http-equiv="REFRESH" content="0;url=http://www.tastersclubwhiskeyofthemonth.com/#whiskey-of-the-month">但它不起作用。

知道我该怎么做吗?

4

1 回答 1

1

Create a htaccess mod rewrite rule. Add this to your htaccess file

RewriteEngine On
RewriteCond %{HTTP_HOST} ^something\.com
RewriteRule (.*) http://.something.com/#something2 [R=301,L]
于 2012-07-13T05:28:36.550 回答