使用 .htaccess 重定向子目录并清理 URL

发布于 2024-11-02 17:30:07 字数 314 浏览 1 评论 0原文

所以,这是一个有点奇怪的情况。我正在网站的子文件夹中为我的同事托管一个开发服务器。基本上文件结构如下所示:

public_html/my_subfolder/public/index.php

因此,我试图做的是,如果用户输入“www.mysite.com/my_subfolder”,他们将被带到“public /index.php”页面,URL 中没有出现公共子文件夹。考虑到它只是一个开发服务器,我仍然在搞乱它,这有点愚蠢。

我正处于这个问题上,我已经搞砸了这么久了,我真的想让它现在就开始工作,这样,如果没有别的事情,我就能学到一些东西。任何帮助将不胜感激!

So, this is somewhat of a strange situation. I'm hosting a development server for a person I'm working with in a subfolder of my website. Basically the file structure looks like this:

public_html/my_subfolder/public/index.php

So what I'm attempting to do is make it so that if a user types "www.mysite.com/my_subfolder" they are taken to the "public/index.php" page without the public subfolder appearing in the URL. It's kind of silly that I'm still messing with this, considering it's only a development server.

I'm just at the point where I've messed with it for so long I really want to get it to work now, so that, if nothing else, I'll learn something. Any help would be greatly appreciated!

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

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

发布评论

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

评论(2

冷…雨湿花 2024-11-09 17:30:07

在您的 .htaccess 文件中尝试此规则:

RewriteEngine on
Options +FollowSymlinks -MultiViews

RewriteCond %{REQUEST_URI} !^/my_subfolder/public [NC]
RewriteRule ^my_subfolder/(.*)$ /my_subfolder/public/$1 [L,NC]

这将重定向所有内容,因此请确保也从 my_subfolder/public 提供静态文件,如 js、css、图像等。

Try this rule in your .htaccess file:

RewriteEngine on
Options +FollowSymlinks -MultiViews

RewriteCond %{REQUEST_URI} !^/my_subfolder/public [NC]
RewriteRule ^my_subfolder/(.*)$ /my_subfolder/public/$1 [L,NC]

This will redirect everything so make sure to serve your static files like js, css, images etc from my_subfolder/public as well.

一紙繁鸢 2024-11-09 17:30:07

尝试使用 P 标志

RewriteRule ^/foo(.*) http://bar$1 [P] 

谢谢

S

try using the P flag

RewriteRule ^/foo(.*) http://bar$1 [P] 

Thanks

S

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文