欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx rewrite重定向怎么排除一个目录?

程序员文章站 2023-12-31 18:10:52
...
codeingoniter 配置nginx如下:

if (!-e $request_filename) {
rewrite ^.*$ /index.php last;
}

配置后所有没有的目录文件 都被重定向到index.php
根目录的resource文件夹内的css js 图片 都访问不了了 显示404
请问如何使resource目录不被重定向???

回复内容:

codeingoniter 配置nginx如下:

if (!-e $request_filename) {
rewrite ^.*$ /index.php last;
}

配置后所有没有的目录文件 都被重定向到index.php
根目录的resource文件夹内的css js 图片 都访问不了了 显示404
请问如何使resource目录不被重定向???

tryfiles $uri $uri/ /index.php;

上一篇:

下一篇: