S
S
Sergey Minakov2016-07-25 08:37:08
htaccess
Sergey Minakov, 2016-07-25 08:37:08

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>

-------------------- .htaccess--------------------
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

1 answer(s)
I
IceJOKER, 2016-07-25
@IceJOKER

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question