我尝试在.htaccess中重写规则网址:
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^myfolder/([^/]*)$ /myfolder/index.php?link=$1 [L]
RewriteRule ^myfolder/([^/]*)/([^/]*)/([^/]*)$ /myfolder/functions.php?model=$1&id=$2&method=$3 [L]
所以,它有效。但是,我的CSS没有加载。我试图找到一些解决方案,当我改变时:
<link href="css/colors/blue.css" rel="stylesheet">
到
<link href="css/blue.css" rel="stylesheet">
,然后从“ css / colors”文件夹中删除blue.css并将其添加到“ css”文件夹中。我的CSS已加载。 我的问题是如何在“ css / colors / blue.css”中加载CSS。