WordPress更改网站网址名称(不更改实际网址)

时间:2016-07-25 20:37:57

标签: wordpress .htaccess url url-rewriting

说我有www.example.com/uglytext作为我的主页。有没有办法可以将其更改为www.example.com/nicetext,同时仍然保留uglytext作为目录名称,并且仍然实际导航到幕后的www.example.com/uglytext?

我目前的htaccess:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /mobile_dev/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /mobile_dev/index.php [L]
</IfModule>

# END WordPress

我需要mobile_dev才能移动。 www.mysite.com/mobile而不是www.mysite.com/mobile_dev

1 个答案:

答案 0 :(得分:0)

wp-admin Settings > General下,有两个选项:

  • WordPress Address (URL)(对应于数据库中siteurl表中的wp_options
  • Site Address (URL)(对应同一张桌中的home

您可以将WordPress Address (URL)设置为http://www.example.com/uglytext,将Site Address (URL)设置为http://www.example.com/nicetext,以获得所需的结果。

有关详细信息,请查看此WordPress Codex page,说明移动核心WordPress文件和更详细地维护URL的过程。