无法加载资源:服务器响应状态为 404 - WordPress 设置错误

问题描述 投票:0回答:1

克隆 WordPress 项目并通过 localhost 访问后,当前我的网页如下所示: Wordpress project cloned

正如您所见,CSS 文件未加载:例如

/var/www/html/dipkar-wp/wp-content/themes/dipkar/assets/css/style.min.css

style.min.css
的检查模式出现以下错误:

GET http://localhost/dipkar-wp/wp-content/themes/dipkar/assets/css/style.min.css?ver=6.6.1 404 (Not Found)

如果点击,所有链接也会断开。

我在

/var/www/html/dipkar-wp
设置网站,我正在 Ubuntu 22.04 笔记本电脑上设置。

/var/www/html/dipkar-wp
中的文件/文件夹是:

-rwxr-xr-x  1 www-data www-data   405 Thg 8  18 15:52 index.php
drwxr-xr-x  2 www-data www-data  4096 Thg 8  18 15:52 srt2text
-rwxr-xr-x  1 www-data www-data  7387 Thg 8  18 15:52 wp-activate.php
drwxr-xr-x  9 www-data www-data  4096 Thg 8  18 15:52 wp-admin
-rwxr-xr-x  1 www-data www-data   351 Thg 8  18 15:52 wp-blog-header.php
-rwxr-xr-x  1 www-data www-data  2323 Thg 8  18 15:52 wp-comments-post.php
-rwxr-xr-x  1 www-data www-data  3040 Thg 9   2 10:01 wp-config.php
drwxr-xr-x  6 www-data www-data  4096 Thg 8  18 15:52 wp-content
-rwxr-xr-x  1 www-data www-data  5638 Thg 8  18 15:52 wp-cron.php
drwxr-xr-x 30 www-data www-data 12288 Thg 8  18 15:52 wp-includes
-rwxr-xr-x  1 www-data www-data  2502 Thg 8  18 15:52 wp-links-opml.php
-rwxr-xr-x  1 www-data www-data  3937 Thg 8  18 15:52 wp-load.php
-rwxr-xr-x  1 www-data www-data 51238 Thg 8  18 15:52 wp-login.php
-rwxr-xr-x  1 www-data www-data  8525 Thg 8  18 15:52 wp-mail.php
-rwxr-xr-x  1 www-data www-data 28774 Thg 8  18 15:52 wp-settings.php
-rwxr-xr-x  1 www-data www-data 34385 Thg 8  18 15:52 wp-signup.php
-rwxr-xr-x  1 www-data www-data  4885 Thg 8  18 15:52 wp-trackback.php
-rwxr-xr-x  1 www-data www-data  3246 Thg 8  18 15:52 xmlrpc.php

内容

/etc/apache2/sites-available/wordpress.conf

<VirtualHost *:80>
    DocumentRoot /var/www/html/dipkar-wp
    ServerAdmin root@localhost
    <Directory /var/www/html/dipkar-wp>
        Options FollowSymLinks
        AllowOverride all
        DirectoryIndex index.php
        Require all granted
    </Directory>
    Alias /wp-content /var/www/html/dipkar-wp/wp-content
    <Directory /var/www/html/dipkar-wp/wp-content>
        Options FollowSymLinks
        Require all granted
    </Directory>
</VirtualHost>

我只能认为我没有在项目中正确设置 url。不过,我不知道具体的设置问题可能是什么。 任何帮助/见解将不胜感激。

wordpress apache
1个回答
0
投票

检查文件

/var/www/html/dipkar-wp/wp-content/themes/dipkar/assets/css/style.min.css
是否存在。

请注意,缺少的文件名是

style.min.css
,而不是
style.css

© www.soinside.com 2019 - 2024. All rights reserved.