gpt4 book ai didi

.htaccess - 编辑 .htaccess 文件

转载 作者:行者123 更新时间:2023-12-01 13:08:58 25 4
gpt4 key购买 nike

我已经使用 CodeIgniter 创建了一个应用程序,并且尝试使用 CodeIgniter User Guide 中列出的 apache mod_rewrite 规则如下:

RewriteEngine on

RewriteCond $1 !^(index\.php|images|robots\.txt)

RewriteRule ^(.*)$ /index.php/$1 [L]

问题是我在文件夹 abc/ 中有这个应用程序,但是当我键入 mysite/abc/something(应该指向 mysite/abc/index.php/something) 我被重定向到 mysite/index.php/something

我应该对 .htaccess 文件做哪些更改才能使其正常工作?

最佳答案

RewriteCond $1 !(index\.php|^images|^robots\.txt)
RewriteRule (.*) index.php/$1 [L,NS]

关于.htaccess - 编辑 .htaccess 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/574818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com