更改 wordpress 管理员 url

Changing wordpress admin url

我有一个使用 Capistrano 部署的 wordpress 站点。

前端工作正常,但是当我访问 wp-admin/ 页面时,我的 url、

出现一些错误

http://www.youthrive.com.au/wp-login.php?redirect_to=http%3A%2F%2Fwww.youthrive.com.au%2Fcurrent%2Ftrunk%2Fwp-admin%2F&reauth=1

我想删除 url 上的 current/trunk。有没有办法使用 htaccess 实现?

不是通过 .htaccess,您可以通过主题的 wp-config.php 和 functions.php 更改此设置

wp-config.php

define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');

functions.php

update_option( 'siteurl', 'http://example.com' );
update_option( 'home', 'http://example.com' );

替换你需要更改的URL。