如何制作这个http://www.example.com/demo来http://www.example.com

时间:2012-08-22 10:46:50

标签: wordpress

我想将网站从http://www.example.com/demo ....移至http://www.example.com

如何在不改变任何内容的情况下实现页面 - 帖子 - 图像

2 个答案:

答案 0 :(得分:2)

如果您已在http://www.example.com/demo安装了Wordpress,现在想要http://www.example.com访问它,则此article from the Wordpress Codex会对您有所帮助。 您将在几个步骤中完成。

答案 1 :(得分:0)

将其添加到您的.htaccess文件中:

Redirect /demo http://www.example.com

并将其添加到顶层目录中的index.php文件中:

 <?php
 include '/demo';
 ?>