php:不同目录的modrewrite
我有以下目录结构:
/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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
让你的 .htaccess 像这样:
Have your .htaccess like this:
您可以选择符号链接该目录吗?尽管它没有解决应用程序中的任何路径,但它非常快速且简单。
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.