gpt4 book ai didi

php - 如何在 RewriteCond 中获取本地路径?

转载 作者:行者123 更新时间:2023-12-04 03:07:38 26 4
gpt4 key购买 nike

这是我的 .htaccess 文件:

RewriteEngine On

RewriteBase /projs/CodeIgniterTest

RewriteCond %{REQUEST_URI} !^/projs/CodeIgniterTest/index.php
RewriteRule ^(.*)$ index.php/$0

RewriteRule 工作正常,但我无法让 RewriteCond 行与本地路径一起工作。我希望它能工作:

RewriteCond %{REQUEST_URI} !^index.php

但是 %{REQUEST_URI} 不太关心 RewriteBase 行并使用完整路径。有什么办法可以达到我想要的结果吗?我不想每次更改项目路径时都必须编辑 .htaccess 文件。

最佳答案

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

或者只是

RewriteCond $0 !^index.php
RewriteRule ^(.*)$ index.php/$0

关于php - 如何在 RewriteCond 中获取本地路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8617191/

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