ci项目完成后隐藏入口文件,开启为静态,缓存

ci隐藏入口文件

在apache配置文件中设置
1,开启apache中的重写模块
 httpd.conf中的LoadModule rewrite_module modules/mod_rewrite.so开启s
2,将相对应目录的AllowOverride改为All
3,在项目的根目录下面新建.htaccess文件
 内容:
   RewriteEngine on
   RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME}  !-d
 RewriteCond $1 !^(index\.php|images|robots\.txt)
 RewriteRule ^(.*)$ index.php/$1 [L]


伪静态的设置:
     config.php文件中设置,
          $config[‘url_suffix’] = ‘.html’;       //后缀以静态网页

开启缓存
$this->output->cache('时间');

你可能感兴趣的:(ci项目完成后隐藏入口文件,开启为静态,缓存)