用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2772|回复: 6
收起左侧

client denied by server configuration

[复制链接]
发表于 2013-12-19 17:17:52 | 显示全部楼层 |阅读模式
本帖最后由 疯狂的石头 于 2013-12-19 20:37 编辑

去除index.php 配置好.htaccess    没有起作用

在apache错误日志里看到 这么个错误

[Thu Dec 19 16:42:15 2013] [error] [client 127.0.0.1] client denied by server configuration: C:/myweb/apache/htdocs/jpldragon/.htaccess

  1. RewriteEngine on  
  2. RewriteCond $1 !^(index\.php|images|robots\.txt)
  3. RewriteRule ^(.*)$ /jpldragon/index.php/$1 [L]
复制代码

什么原因

 楼主| 发表于 2013-12-20 10:06:26 | 显示全部楼层
已解决  原来是这里设置错了  
  1. # AllowOverride controls what directives may be placed in .htaccess files.
  2.     # It can be "All", "None", or any combination of the keywords:
  3.     #   Options FileInfo AuthConfig Limit
  4.     #
  5.     AllowOverride All
复制代码

发表于 2013-12-20 12:11:05 | 显示全部楼层
这是 apache 的问题吧,和 CI 无关。
 楼主| 发表于 2013-12-20 16:00:23 | 显示全部楼层
Hex 发表于 2013-12-20 12:11
这是 apache 的问题吧,和 CI 无关。

已经解决    下面的没设置好

  1.     # AllowOverride controls what directives may be placed in .htaccess files.
  2.     # It can be "All", "None", or any combination of the keywords:
  3.     #   Options FileInfo AuthConfig Limit
  4.     #
  5.     AllowOverride All
复制代码


 楼主| 发表于 2013-12-20 16:14:56 | 显示全部楼层
Hex 发表于 2013-12-20 12:11
这是 apache 的问题吧,和 CI 无关。

顺便问句 在view层怎么写相对路径引入CSS文件 和显示图片啊

发表于 2013-12-20 17:46:46 | 显示全部楼层
疯狂的石头 发表于 2013-12-20 16:14
顺便问句 在view层怎么写相对路径引入CSS文件 和显示图片啊

不要用相对路径,用 base_url() 函数,具体参考下手册。

 楼主| 发表于 2013-12-20 18:11:29 | 显示全部楼层
Hex 发表于 2013-12-20 17:46
不要用相对路径,用 base_url() 函数,具体参考下手册。

与smarty绑定了  现在每次在构造函数里每次assign下;;;

本版积分规则