简体   繁体   中英

URL redirect on homepage of wordpress theme

I'm using a particular wordpress theme (Pluto) to make a site. When I go to my domain - www.tastersclubwhiskeyofthemonth.com , the homepage displays no content until you hit one of the menu items.

How can I get my homepage to default to a specific menu item @ www.tastersclubwhiskeyofthemonth.com/ #whiskey-of-the-month

I tried using the typical HTML redirect, but it doesn't work with my site - maybe because all my urls have # after the .com, or maybe because it's a wordpress site?: <meta http-equiv="REFRESH" content="0;url=http://www.tastersclubwhiskeyofthemonth.com/#whiskey-of-the-month"> but it doesn't work.

Any idea how I can do this?

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]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM