编写指向子目录中文件的 htaccess

Writing htaccess that points to a file in the sub-directory

我在以下路径有一个订单页面

https://example.com/backend/web/order

我想将其显示为

https://example.com/order

htaccess 代码应该是什么(如果可能,请让我知道每一步,这样我也可以学习)。我应该把 htaccess 文件放在哪里?在后端文件夹或根文件夹中。

要将 https://example.com/backend/web/order 更改为 https://example.com/order,您可以在根文件夹的 htaccess 中使用以下规则:

RewriteEngine On

RewriteRule ^order /back-end/web/order [L]

以上规则可以让您的旧 URL 作为 http://example.com/order 访问。