0

こんにちは、私はコードイグナイターにそのような問題があります。.css ファイルのスタイルを使用できません。しかし、私はこのフィルターが私の見解に関連していることを知っています。(ファイアーバグ)。接続するためのリンクは次のとおりです。

`<link rel="stylesheet" href="images/Enlighten.css" type="text/css" />`

ディレクトリ内の css ファイル/images/Enlighten.css

これが私のhtaccessファイルです:

Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|template|robots\.txt|public|)
RewriteCond %{REQUEST_URI} !\.(css¦js¦jpg¦gif)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L,QSA]

私の間違いはこのファイルにあると思います。(このファイルは扱っていません :(( )

PS Everywhere で Enlighten.css テキスト印刷のスタイルを '??????????' として使用すると

4

3 に答える 3

3

次のように単純化してはどうでしょうか。

RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA] 

ps。混乱を避けるために、CSS を images ディレクトリに配置しないことをお勧めします。私は常にアセット フォルダーを使用し、そこにすべてを整理します。

/Assets
  /css
  /images
  /js
于 2012-08-09T14:41:52.597 に答える
1

htaccess ファイルに次のコードを使用します:-

<IfModule mod_rewrite.c>
    RewriteEngine on

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>
于 2012-08-09T14:53:46.070 に答える
0

以下を使用することをお勧めします.htaccess

AddDefaultCharset UTF-8

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Prevents user access to the application folder
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
</IfModule>

<IfModule !mod_rewrite.c>
    ErrorDocument 404 /index.php
</IfModule> 
于 2012-08-09T14:47:19.023 に答える