php:不同目录的modrewrite

发布于 2024-11-06 05:50:03 字数 344 浏览 0 评论 0原文

我有以下目录结构:

/front/index.php <- 网站根目录

/admin/img/ <- 额外的图像,

以便包含图像我'我使用此路径:../admin/img/

问题是我无法在我的服务器上使用 ../ 所以我需要重新映射整个路径。

我该如何使用 modrewrite 来做到这一点?

我只是想将其从 ../admin/img/ 映射到 admin/img/

如果可能的话有什么想法吗?

谢谢

i'm having the following directory structure:

/front/index.php <- website root

/admin/img/ <- extra images

so for including images i'm using this path: ../admin/img/

the problem is that i can't use ../ on my server so i need to remap the whole path.

how can i do this using modrewrite?

i'd simply like to map it from ../admin/img/ to admin/img/

any ideas if this is possible?

thanks

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

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

发布评论

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

评论(2

生活了然无味 2024-11-13 05:50:03

让你的 .htaccess 像这样:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteRule ^\.\.(/admin/img/.*)$ $1 [NC,L,R=301]

Have your .htaccess like this:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteRule ^\.\.(/admin/img/.*)$ $1 [NC,L,R=301]
病女 2024-11-13 05:50:03

您可以选择符号链接该目录吗?尽管它没有解决应用程序中的任何路径,但它非常快速且简单。

Do you have the option to symlink the directory? It's pretty quick and easy, though it doesn't address any paths in your app.

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