Answer the question
In order to leave comments, you need to log in
On my site, all files go through index.php thanks to .htaccess, but then the styles are not loaded. What to do?
---------------------- www ----------------------
www/res/style. css
www/index.php
www/.htaccess
------------------- index.php ------------------ -
<head>
<link href="/res/style.css" rel="stylesheet">
</head>
RewriteEngine on
RewriteBase /
Options All -Indexes
RewriteCond %{REQUEST_FILENAME} -s [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^res/(.*)$ res/$1 [L]
RewriteRule ^.*$ [NC,L]
RewriteRule ^.*$ index.php [NC,L]
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question