我正在使用特定的wordpress主题(冥王星)制作网站。当我转到我的域 - www.tastersclubwhiskeyofthemonth.com时,在您点击其中一个菜单项之前,主页不会显示任何内容。
如何让我的主页默认为特定菜单项@ www.tastersclubwhiskeyofthemonth.com/#whiskey-of-the-month
我尝试使用典型的HTML重定向,但它不适用于我的网站 - 也许是因为我的所有网址都在.com之后有#,或者因为它是一个wordpress网站?:
<meta http-equiv="REFRESH" content="0;url=http://www.tastersclubwhiskeyofthemonth.com/#whiskey-of-the-month">
但它不起作用。
知道我该怎么做吗?
答案 0 :(得分:1)
创建一个htaccess mod重写规则。将其添加到您的htaccess文件
RewriteEngine On
RewriteCond %{HTTP_HOST} ^something\.com
RewriteRule (.*) http://.something.com/#something2 [R=301,L]