将索引页面重定向到内部页面

时间:2013-12-06 04:39:03

标签: wordpress

假设我有一个WordPress域,比如sampledomain.com。默认情况下,它会指向index.php

如果我想要什么,而不是登陆页面 - 即当某人输入域名时 - sampledomain.com - 它应该指向一个内部页面,如sampledomain.com/property/home/

这是一个WordPress网站;我认为应该可以使用.htaccess来实现。

1 个答案:

答案 0 :(得分:0)

您无需使用.htaccess,因为您可以选择任何您希望wordpress主题登录页面的页面。

转到Settings->Readings并选择一个静态页面 enter image description here

从首页下拉菜单中选择要在首页上显示的任何页面。如果您想要使用.htaccess进行重定向,那么这应该对您有用:

RewriteEngine On
RewriteRule ^$ /my-target-page/ [R=301,L]