- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Codeigniter 2.0.3 | Apache 2.2.17 | PHP 5.3.4。
我想授予对“公共(public)”文件夹中所有文件和子文件夹的访问权限。我已经阅读了 Codeigniter wiki 中的文章以及谷歌搜索结果的所有前 5 页,但没有找到任何有效的方法。
这是文件树:
- application
- public
- css
- style.css
- img
- js
- system
- .htaccess
这是我用来从 URL 中删除“index.php”并尝试授予对该文件夹的访问权限的 .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /CodeIgniter_2.0.3
#Removes access to the system folder by users.
RewriteCond %{REQUEST_URI} ^system.*
RewriteRule ^(.*)$ /index.php/$1 [L]
#Checks to see if the user is attempting to access a valid file,
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#Enable access to the images and css folders, and the robots.txt file
RewriteCond $1 !^(index\.php|public|robots\.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
该网站正在运行,URL 中不再需要“index.php”,但最后一个条件应该允许访问公共(public)文件夹,但它对我不起作用,所以这个 http://localhost/CodeIgniter_2.0.3/public/css/style.css
找不到文件。
在 config.php 中我有:
$config['base_url'] = 'http://localhost/CodeIgniter_2.0.3/';
$config['index_page'] = '';
请帮忙。谢谢!!!
最佳答案
根据您当前的结构,您需要将最后一个 RewriteCond
更改为:
RewriteCond $1 !^(index\.php|application\/public|robots\.txt)
因为您的 .htaccess
与您的应用程序文件夹位于同一目录中,而您的公共(public)文件夹位于您的应用程序文件夹中,因此您需要明确地将应用程序/公共(public)文件夹标记为可访问。
关于apache - 代码点火器.htaccess : Give public access to all files and folders inside the 'public' folder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7718941/
我正在使用 Codeigniter,问题是我的 Controller 中有重复很多的特定代码,我需要将这段代码放在一个地方,然后在 Controller 中调用它。 例子: public funct
我真的很想知道我该怎么做,我有 3 个页面具有指向 1 个页面的相同链接,现在我想要做的是拥有 1 个足够智能的按钮来获取使用了 3 个页面中的哪一个转到该页面并使用它作为返回上一页的链接。 如果有人
我需要从 site_url() 返回值中删除 index.php我不希望搜索引擎缓存我的 URL 包含 index.php。 我通过设置 .htaccess 文件从 url 中删除了 index.ph
我是一名优秀的程序员,十分优秀!