mod_rewrite 更改子目录

发布于 2024-12-10 20:53:54 字数 430 浏览 0 评论 0原文

结构

http://localhost/ci2

你好,我在 ci2 中有这个带有 .htaccess 的

RewriteEngine on 
RewriteRule ^$ /ci2/index.php [L] 
RewriteCond $1 !^(index\.php|resource|files|system|user_guide|robots\.txt|favicon\.ico) 
RewriteRule ^(.*)$ /ci2/index.php/$1 [L]

,现在我想将文件移动到一个子目录,

http://localhost/folder/ci2

我意识到它不能使用相同的 .htaccess 文件 那么需要进行哪些修改呢?

hello I have this structure

http://localhost/ci2

with this .htaccess inside ci2

RewriteEngine on 
RewriteRule ^$ /ci2/index.php [L] 
RewriteCond $1 !^(index\.php|resource|files|system|user_guide|robots\.txt|favicon\.ico) 
RewriteRule ^(.*)$ /ci2/index.php/$1 [L]

now I want to move the files to a subdirectory

http://localhost/folder/ci2

I realized that is not working with the same .htaccess file
so what modifications are necessary?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少年亿悲伤 2024-12-17 20:53:54

您应该只需要更改为:

RewriteEngine on 
RewriteCond $1 !^(index\.php|resource|files|system|user_guide|robots\.txt|favicon\.ico)
RewriteRule ^folder/ci2/(.*)$ folder/ci2/index.php [L]

You should just need to change to:

RewriteEngine on 
RewriteCond $1 !^(index\.php|resource|files|system|user_guide|robots\.txt|favicon\.ico)
RewriteRule ^folder/ci2/(.*)$ folder/ci2/index.php [L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文