如何将对我的域的请求重定向到子文件夹中的索引,同时保留域 URL 并使用 .htaccess?

问题描述 投票:0回答:1

我在子文件夹 /php/index.php 中使用 React 和 php 索引,以便能够在渲染 index.html 之前重写元标记(这会使用 React 渲染应用程序)。

如何让对我的网站的请求每次都经过 /php/index.php,同时保持与我的 React 应用程序匹配的 url? 例如,如果我输入 https://example.com/mypage,我想在地址栏中保留这个确切的 url,同时传递 index.php 来呈现页面。

谢谢

php reactjs .htaccess
1个回答
0
投票

你好雅克·吉罗德尔!

您可以通过 .htaccess 将请求路由到任何 .php 文件 在你的情况下,它可能看起来像这样:

RewriteCond %{REQUEST_FILENAME} !-f - take all requests which is not direct to any file
RewriteRule . php/index.php [L,QSA] - and route to php/index.php

致以诚挚的问候

© www.soinside.com 2019 - 2024. All rights reserved.