我正在使用一些css:
background: url('../images/gry_tile.gif');
目前我的css目前直接位于我的404.php的标题中<style type="text/css">
我的404页面与索引和其他页面并排,而我想要的图像位于名为images的文件夹中。
由于某些原因,图片没有显示,他们似乎也没有返回404错误。是否有一些apache .htaccess设置我错过了允许图像的地方,或文件路径略有不同?
答案 0 :(得分:0)
使用此功能:
<?php echo get_template_directory_uri(); ?>
ex:background: url('<?php echo get_template_directory_uri(); ?>/images/gry_tile.gif');