基本的に、次の場所にあるCSSファイルが必要です。
http://localhost/crm/Websites/crm/css/style.css
次の方法でアクセスできるようにする:
http://localhost/crm/css/style.css
私はいくつかのことを試しましたが、うまくいきません。
RewriteRule ^/crm/css/style.css$ /crm/Websites/crm/css/style.css
RewriteRule ^(.+)/css/style.css$ $1/Websites/crm/css/style.css
誰かが私が間違っていることを指摘できますか?
編集:実用的な書き直し:
RewriteEngine On
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteCond %{REQUEST_URI} !\.css$
RewriteRule ^(.*)$ index.php [PT,L]