我通过使用以下代码编辑 .htacces 来启用干净的 url
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([a-zA-Z0-9]+)/(.+)/$ index.php?page=$1&option=$2 [L]
RewriteRule ^([a-zA-Z0-9]+)/(.+)$ index.php?page=$1&option=$2 [L]
RewriteRule ^([a-zA-Z0-9]+)$ index.php?page=$1 [L]
RewriteRule ^([a-zA-Z0-9]+)/$ index.php?page=$1 [L]
我对 .htaccess 了解不多,并且做了很多谷歌搜索。我现在的问题是我无法从我的服务器加载 .js 、 .css 和其他文件。当请求的页面不存在时,我得到了显示的 404 错误页面
我怎样才能让我的css和js加载?