2

这些天我正在尝试使用 CodeIgniter。

默认情况下,它在 URI 中有 index.php,如下所示

http://www.example.com/index.php/home

home是控制器内部的一个函数

但我不想要,index.php所以我创建了 .htaccess 文件:

Allow from all
RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond $1 !^(index\.php|img|robots\.txt|script|css)
RewriteRule ^(.*)$ index.php/$1 [L]

基本上它会自动添加“index.php”,除非条件匹配。

然而事情是这样的:
对于这样的URI:http://www.example.com/home
一切正常。

对于这样的 URI:http://www.example.com/home/
然后我网页中的相对链接变得疯狂。
例如: css/common.css被重定向到index.php/home/css/common.css导致找不到css文件。

日志是这样的:

strip per-dir prefix: [dir to my site]/home/css/common.css -> home/css/common.css
applying pattern '^(.*)$' to uri 'home/css/common.css'
rewrite 'home/css/common.css' -> 'index.php/home/css/common.css'
add per-dir prefix: index.php/home/css/common.css -> [dir to my site]/index.php/home/css/common.css
trying to replace prefix [dir to my site]/ with /
internal redirect with /index.php/home/css/common.css [INTERNAL REDIRECT]
add path info postfix: [dir to my site]/index.php -> [dir to my site]/index.php/home/css/common.css
strip per-dir prefix: [dir to my site]/index.php/home/css/common.css -> index.php/home/css/common.css
applying pattern '^(.*)$' to uri 'index.php/home/css/common.css'
pass through [dir to my site]/index.php

我怎样才能解决这个问题?

4

1 回答 1

2

这里的问题不是你的重写规则——它们很好。发生的事情是浏览器认为/home/末尾带有斜杠的是一个真实的目录,因此它将所有相对链接添加到它认为它所在的目录的前缀。然后浏览器用 path 冲出对 CSS 文件的请求/home/css/common.css,这很自然, 被重写,因为它与您的支票不匹配。

我在这里看到的最快的解决方案是对 CSS 文件使用绝对路径。只需将它们链接为/css/common.css而不是您现在拥有的相对链接。

于 2012-07-14T00:43:49.767 回答