1

私の問題はこれです、

現在、/theme/css/somecssfile.css にリンクする必要があります。

私ができるようになりたいのはこれです

/css/somecssfile.css ですが、物理ファイルは /theme/ に保持します。

これは私の現在の .htaccess です

# Enable Rewriting  
RewriteEngine on  
#Gzip
<ifmodule mod_deflate.c>
AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript
</ifmodule>
#End Gzip
RewriteEngine on
RewriteCond $1 !^(index\.php|robots\.txt|files\/images|files\/css|files\/js|files\/swf|files\/upload)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
4

1 に答える 1