0

我在使用以下规则重写 url 时加载 css 文件和图像文件时遇到问题:

RewriteEngine on
RewriteRule ^showProject-([^/]+)-([0-9]+)\.html$ showProject.php?id=$2

我得到这个网址:

localhost:8080/coders_ring/project/test/1.html

真实网址是:

localhost:8080/coders_ring/showProject.php?id=1

我也像这样测试获取 url css 文件,但不是解决方案:

<link href="style/master_style.css" rel="stylesheet" type="text/css" />
<link href="/style/master_style.css" rel="stylesheet" type="text/css" />

任何机构都有一个解决方案来加载这个 url 重写的 css 和图像文件?

4

1 回答 1

0

尝试在 showproject.php 文件中添加基本 href 标签

添加这个

<base href="http://localhost/coders_ring/" />
于 2013-09-24T10:02:06.013 回答