Table of Contents
回复内容:
Home Backend Development PHP Tutorial 修改了wordpress 安装目录 ,然后文章都出现404错误,怎么破

修改了wordpress 安装目录 ,然后文章都出现404错误,怎么破

Jun 06, 2016 pm 08:45 PM
php wordpress

我自己修改了wordpress 安装目录 ,然后文章都出现404错误,怎么破

原来的WordPress安装地址是 http://127.0.0.1/

我把安装目录移动到了ued目录下,现在变成了http://127.0.0.1/test/

WordPress能访问,但文章不能访问了。

怎么办?

回复内容:

我自己修改了wordpress 安装目录 ,然后文章都出现404错误,怎么破

原来的WordPress安装地址是 http://127.0.0.1/

我把安装目录移动到了ued目录下,现在变成了http://127.0.0.1/test/

WordPress能访问,但文章不能访问了。

怎么办?

WordPress文章使用的是完整的URL,文章网址信息是卸载数据库里面的,你这种情况需要到数据库里面替换一下网址,把 http://127.0.0.1/ 替换成 http://127.0.0.1/test/ 就可以了。

配置一下虚拟目录,apache为例:
<virtualhost> ServerAdmin webmaster@dummy-host.example.com DocumentRoot "D:\wamp\www\ued" ServerName dev-ued.com ServerAlias dev-ued.com ErrorLog "logs/dev-ued.com-error.log" CustomLog "logs/dev-ued.com-access.log" common </virtualhost>

然后修改host,将dev-ued.com指向127.0.0.1

<code>127.0.0.1 dev-ued.com
</code>
Copy after login

WordPress安装之后文章的地址还有很多信息是和域名一起存放的。也就是文章地址是绝对路径。比如我安装后第一篇文章是helloWord 数据库里文章地址默认的存放是:http://127.0.0.1/?p=1
如果你的WordPress是放在test下面那么数据库存放的是http://127.0.0.1/test/?p=1
这样你访问肯定是404的。
第一种是执行数据库命令:你可以百度一下WordPress博客搬家,主要是分三种,变域名不变空间,变空间不变域名,变域名且变空间。

第二种是:还有是修改rewrite

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1670
14
PHP Tutorial
1274
29
C# Tutorial
1256
24
How to adjust the wordpress article list How to adjust the wordpress article list Apr 20, 2025 am 10:48 AM

There are four ways to adjust the WordPress article list: use theme options, use plugins (such as Post Types Order, WP Post List, Boxy Stuff), use code (add settings in the functions.php file), or modify the WordPress database directly.

How to build a website for wordpress host How to build a website for wordpress host Apr 20, 2025 am 11:12 AM

To build a website using WordPress hosting, you need to: select a reliable hosting provider. Buy a domain name. Set up a WordPress hosting account. Select a topic. Add pages and articles. Install the plug-in. Customize your website. Publish your website.

How to import the source code of wordpress How to import the source code of wordpress Apr 20, 2025 am 11:24 AM

Importing WordPress source code requires the following steps: Create a sub-theme for theme modification. Import the source code and overwrite the files in the sub-topic. Activate the sub-theme to make it effective. Test the changes to make sure everything works.

The Compatibility of IIS and PHP: A Deep Dive The Compatibility of IIS and PHP: A Deep Dive Apr 22, 2025 am 12:01 AM

IIS and PHP are compatible and are implemented through FastCGI. 1.IIS forwards the .php file request to the FastCGI module through the configuration file. 2. The FastCGI module starts the PHP process to process requests to improve performance and stability. 3. In actual applications, you need to pay attention to configuration details, error debugging and performance optimization.

What happens if session_start() is called multiple times? What happens if session_start() is called multiple times? Apr 25, 2025 am 12:06 AM

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

How to register a wordpress account How to register a wordpress account Apr 20, 2025 am 11:45 AM

To create an account on WordPress, simply visit its website, select the registration option, fill in the registration form, and verify your email address. Other ways to register include using a Google account or Apple ID. The benefits of signing up include creating a website, gaining features, joining the community, and gaining support.

How to write a header of a wordpress How to write a header of a wordpress Apr 20, 2025 pm 12:09 PM

The steps to create a custom header in WordPress are as follows: Edit the theme file "header.php". Add your website name and description. Create a navigation menu. Add a search bar. Save changes and view your custom header.

Composer: Aiding PHP Development Through AI Composer: Aiding PHP Development Through AI Apr 29, 2025 am 12:27 AM

AI can help optimize the use of Composer. Specific methods include: 1. Dependency management optimization: AI analyzes dependencies, recommends the best version combination, and reduces conflicts. 2. Automated code generation: AI generates composer.json files that conform to best practices. 3. Improve code quality: AI detects potential problems, provides optimization suggestions, and improves code quality. These methods are implemented through machine learning and natural language processing technologies to help developers improve efficiency and code quality.

See all articles