|
根据教程成功的去掉了index.php,.htaccess文件如下
- <IfModule mod_rewrite.c>
- RewriteEngine on
- RewriteCond $1 !^(index\.php|images|css|script|pages\.js|css)
- RewriteRule ^(.*)$ /index.php/$1 [L]
- </IfModule>
复制代码
现在php里引用的js和css文件都报403(Forbidden)错误,引用如下
HTML复制代码 <script type="text/javascript" src="/application/views/jQuery/jquery.js"></script> 复制代码
是RewriteCond写的不对还是引用地址有错?请教下坛子里的大师,谢谢! |
|