我在子目录中安装了一个WordPress站点,我的CSS无法正常工作,但是当我启动本地XAMPP服务器时,它就可以工作了。我关掉了我的XAMPP,我的CSS再也没有了。
我在 wp_options 中更改了 site_url 和主页,但它仍然无法正常工作。
以下是 .htaccess 文件:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /staging/
RewriteRule ^index\.php$ - [L]
RewriteRule ^(/)?$ staging[L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{HTTP_HOST} ^(www.)?paradiseexplorers.com$
RewriteRule . /staging/index.php [L]
</IfModule>
# END WordPress
我该如何解决?