我的网站使用了ci框架.如:www.abc.com
现在我有一个a.txt的文件放在根目录下.想这样访问:
www.abc.com/a.txt
由于使用了ci,不能直接访问,请问有什么方法可以直接访问?
------解决方案--------------------
rewritecond %{request_filename} !-f
rewritecond %{request_filename} !-d
rewriterule ^(.*)$ index.php/$1 [l]
上面的2个rewritecond加了没有?
