gpt4 book ai didi

apache - Slim 3 - 使用重写规则从 url 中删除 subdir

转载 作者:行者123 更新时间:2023-12-04 19:27:55 27 4
gpt4 key购买 nike

我在 A2Hosting 上有一个共享主机,我最近从 public_html/ 移动了我的主域|至 public_html/subdir/
这是结构:

/public_html
/subdir(site files of main domain)
/api
index.php

我目前的 htaccess(public_html) 是:
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_URI} !^/subdir/
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.
RewriteRule ^(.*)$ /subdir/$1 [L]

当我之前调用我的 API 时: domain.com/api/
但现在是: domain.com/subdir/api/
我的 htaccess 在 api是 :
RewriteEngine On
RewriteBase /api/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [QSA,L]

如何删除 url 中的“subdir”以保持我的 api 像以前一样?但是仍然使用我当前的 htaccess 将根指向我的子目录?

谢谢

最佳答案

一种方法是重写 /api从根目录中的主 .htaccess 文件中,如下所示:

RewriteEngine On
RewriteBase /
RewriteRule ^api/(.*)$ ../subdir/api/$1 [R,L,QSA]

新/subdir/api 文件夹中的 .htaccess 文件可以保持原样。只需要调整 RewriteBase。

另一种方式是从之前的 /api重写文件夹,如果您出于某种原因保留它:
RewriteEngine On
RewriteBase /api
RewriteRule ^(.*)$ ../subdir/api/$1 [L]

关于apache - Slim 3 - 使用重写规则从 url 中删除 subdir,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50593569/

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