我在使用 xampp 时遇到了困难,这真的让我发疯了。我很少安装带有根模板的 Wordpress,它在没有任何 css、js..etc 的情况下加载。解决方案是删除 Boilerplates 默认的 .htaccess 并添加:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteRule ^assets/css/(.*) /wp-content/themes/test_template/assets/css/$1 [QSA,L]
RewriteRule ^assets/js/(.*) /wp-content/themes/test_template/assets/js/$1 [QSA,L]
RewriteRule ^assets/img/(.*) /wp-content/themes/test_template/assets/img/$1 [QSA,L]
RewriteRule ^plugins/(.*) /wp-content/plugins/$1 [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
现在我面临同样的问题,但使用 HTML5 Boilerplate 和 Twitter-bootstrap,没有复杂代码的标准 html5 文件。我试过使用:
dirname(__FILE__);
它仍然无法找到文件。有人遇到同样的问题并找到了解决方案吗?提前致谢。