和朋友在做一个小网站,用到了CI框架,之前测试都是在windows上,隐藏index.php也相对比较简单。但服务器是ubuntu系统,需要配置一下,根据网上看到的一些教程,结合自己电脑的特点,记录步骤如下:1.服务器环境:
ubuntu12.04 64位2.开启mod_rewrite模块: ...
分类:
Web程序 时间:
2014-05-19 15:00:31
阅读次数:
287
rewriter配置nginx.conf配置 server { listen 80;
server_name 127.0.0.1; index index.php; root /usr/share/nginx/html; #rewrite
^/projects/BookLib...
分类:
其他好文 时间:
2014-05-16 19:46:26
阅读次数:
316
在APACHE服务器上的访问方式上去除index.php下面我说下apache下,如何去掉URL里面的index.php例如:你原来的路径是:localhost/index.php/index改变后的路径是:localhost/index1.httpd.conf配置文件中加载了mod_rewrite...
分类:
Web程序 时间:
2014-05-16 05:12:22
阅读次数:
351
server{if(!-e$request_filename){rewrite^(.*)$/index.phplast;}}如果if没有放在location时,在做memc缓存时,在错误日志里会提示以下信息2014/05/1210:45:51[error]11520#0:*325726srcache_fetch:cachesenttruncatedresponsebodywhilesendingtoclient,client:192.168.3.124,..
分类:
其他好文 时间:
2014-05-15 19:02:44
阅读次数:
350
1、后台商店设置-基本设置-URL重写开启2、修改httpd.conf文件AllowOverride
None 改为AllowOverride AllLoadModule rewrite_module
modules/mod_rewrite.so前面的#号删除3、打开conf\extra\http....
分类:
其他好文 时间:
2014-05-14 02:03:49
阅读次数:
442
官方文档中:
QUERY_REWRITE_ENABLED
Property
Description
Parameter type
String
Syntax
QUERY_REWRITE_ENABLED = { false | true | force }
Default value
If OPTIMIZER_FEATURES...
分类:
其他好文 时间:
2014-05-11 07:08:00
阅读次数:
300
QUERY_REWRITE_INTEGRITY
Property
Description
Parameter type
String
Syntax
QUERY_REWRITE_INTEGRITY = { enforced | trusted | stale_tolerated }
Default value
enforced
...
分类:
其他好文 时间:
2014-05-11 06:26:48
阅读次数:
445
检查网站日期,发现内容如下:System.NullReferenceException:
未将对象引用设置到对象的实例。 在 URLRewriter.ModuleRewriter.Rewrite(String requestedPath,
HttpApplication app) 在 URL...
分类:
其他好文 时间:
2014-05-08 17:34:08
阅读次数:
275
Yii在Nginx下的rewrite配置
今天配置nginx后首页显示正常,点击链接就报404错误,只是知道在apache下只要开启重定向模块,再nginx下加上如下配置即可:
1. Nginx配置
在nginx.conf的server {段添加类似如下代码:
Nginx.conf代码:
location / {
if (!-e $request_filename){...
分类:
其他好文 时间:
2014-05-07 08:43:02
阅读次数:
449