|
发表于 2011-10-31 14:18:12
|
显示全部楼层
Hex 发表于 2010-9-25 09:55
CI 不需要 .htaccess 文件。只有你想去掉 index.php 的时候才需要。
如果还是不行,那是你的服务器的问题, ...
你好我用.htaccess就是为了为了能让JS里跳转路径能是相对的路径,我添加了.htaccess文件,URL地址成功去除了index.php.但是在JS如果写$.get('/jquery/task',function(){$('#task').after('加载完成'); $('#task').text('成功').hide(); }还是跳转不了,必须$.get('index.php/jquery/task',function(),请问怎么样才能$.get('/jquery/task',function()
我用的是 base_url().htaccess里是
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteOptions Inherit
RewriteBase /ci/
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /ci/index.php/$1 [L]
</IfModule>
$config['index_page'] = ""; |
|