Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 wordpress 新手,我将网站路径从以下位置更改:
localhost/site/
到:
localhost/site/home/
现在我无法访问文件和 wp-admin 来撤消它。我应该修改哪个文件来修复我的网站?
假设您可以访问数据库,您可以更新 wp_options 表,修改 option_names 为“siteurl”和“home”的行。
如果您不能修改这些,那么您可以将这些添加到您的 wp-config 文件中(设置相关路径):
定义('WP_HOME','http://yourdomain.com' );定义('WP_SITEURL','http://yourdomain.com' );
以下是一些快速提示:
wp-admin -> settings
$WP_HOME/.htaccess
$WP_HOME/admin/.htaccess