设为首页
收藏本站
Archiver
用户
登录
入住
用户名
Email
自动登录
找回密码
密码
登录
入住 CI 中国社区
首页
返回 CodeIgniter 中国首页
论坛
BBS
导读
Guide
个人主页
Space
中文手册
搜索
CodeIgniter 搜索引擎
视频教程
案例
任务
搜索
搜索
本版
帖子
用户
设为首页
收藏本站
Archiver
开启辅助访问
切换到宽版
日志
相册
分享
记录
CodeIgniter4
CodeIgniter3
CodeIgniter2
帖子
好友
道具
勋章
收藏
任务
记录
留言板
设置
我的收藏
退出
腾讯QQ
微信登录
CodeIgniter 中国开发者社区
»
论坛
›
CodeIgniter 开发
›
CodeIgniter 问答求助
›
nginx对ci路径进行重写没有效果,求帮助! ...
返回列表
查看:
2952
|
回复:
2
[HELP]
nginx对ci路径进行重写没有效果,求帮助!
[复制链接]
ewil_l
ewil_l
当前离线
积分
57
IP卡
狗仔卡
发表于 2014-3-9 15:19:45
|
显示全部楼层
|
阅读模式
nginx已经可以访问ci了,但是重写url的时候怎么样都没有反应,我察看了php的访问日志,同样的请求访问,路径正确,但是通过第一条规则重写后报404错误。。。
也就是说,如果直接手动敲 http://www.xxxx.com/home/article 是可以访问的,但是如果路径是: http://www.xxxx.com/h/who/article/124 这样访问的话,就不行了。 rewrite的flag = last 和 break是不行的,flag = redirect就没有问题,可是我不想改变浏览器地址,请问有什么解决方法吗?我搞了一天都没有什么头绪。
PHP
复制代码
if
(
!-
e
$request_filename
)
{
rewrite
/
h
/
(
.*
)
/
(
.*
)
/
(
.*
)
$
/
index
.
php
/
home
/
article
break
;
rewrite ^
/
(
.*
)
$
/
index
.
php
/
$
1
last
;
}
复制代码
nginx
,
rewrite
相关帖子
•
PHP5.3.6 + Nginx Fastcgi下持续出现502 Bad gateway问题
•
Unable to locate the model you have specified:*_model 解决方法
•
从本地挪到apache服务器,无法rewrite问题
•
index.php/welcome 404错误
•
ci rewrite 在nginx里的反向代理 怎么配置
•
linux+Nginx+CodeIgniter Access denied问题.
•
lnmp 下配置ci (去index.php)
•
CI重写规则与.htaccess的冲突,求助
回复
使用道具
举报
提升卡
置顶卡
沉默卡
喧嚣卡
变色卡
千斤顶
显身卡
ewil_l
ewil_l
当前离线
积分
57
IP卡
狗仔卡
楼主
|
发表于 2014-3-9 15:44:05
|
显示全部楼层
简单地说就是内部跳转不了
回复
支持
反对
使用道具
举报
显身卡
edgeto
edgeto
当前离线
积分
58
IP卡
狗仔卡
发表于 2015-5-6 17:17:48
|
显示全部楼层
location / {
index index.php;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?$1 last;
break;
}
}
回复
支持
反对
使用道具
举报
显身卡
返回列表
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
入住 CI 中国社区
本版积分规则
发表回复
回帖后跳转到最后一页