我在使用以下规则重写 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 和图像文件?