URL重写:css,js和图像未加载
我遵循以下规则.htaccess
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteRule ^detail/([0-9]+)/?$ detail.php?id=$1
它将 URL 重定向到 。页面重定向成功,但问题是未加载,http://localhost/detail/123
http://localhost/detail.php?id=123
CSS, JS, and images
CSS,js文件位于和http://localhost/css/
http://localhost/js/
一种解决方案是使用绝对路径(例如/CSS或/js,而不仅仅是CSS/,/js,但这似乎不是一个可靠的解决方案,因为我们必须在所有文件上更改它,
还有任何其他基于规则的解决方案,它独立于编辑所有PHP文件并让我们使用“相对路径”?.htaccess