Php:我的框架禁用直接文件访问,但我需要避免这种情况,如何?
.htaccess 看起来像这样:
Options +FollowSymLinks +ExecCGI
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !(\.png|\.jpg|\.gif|\.jpeg|\.bmp|\.ico)$
RewriteRule ^(.*)$ entryPoint.php [QSA]
</IfModule>
这强制所有请求通过entryPoint.php 运行。这会处理所有文件、重定向等。图像可以自由移动,可以直接引用它们。但是 CSS、JS 文件呢?我无法添加例外 - 因为它会泄露目录结构。我想要的只是: script src="ds.jss",而它们可以位于“js/”或“module/x/js/”。与 CSS 相同。
我知道我可以使用 EntryPoint.php: file_get_contents 和输出来做到这一点。它确实有效,但速度太慢。首先我们也尝试了图片。
如何启用“直接访问”?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试添加这些重写条件...
Try adding these rewrite conditions...
如果您不想在 php 文件中执行此操作,则需要添加一条规则:
Options +FollowSymLinks +ExecCGI
重要的部分是
L
标志,代表最后 文档。它将阻止其他规则运行。如果您想动态解析文件名,但不想使用 PHP 来提供实际文件,而是使用 apache 服务器,您仍然可以通过创建 动态重写映射 Docs,搜索 外部重写程序。
If you don't want to do that within the php file, you need to add a rule:
Options +FollowSymLinks +ExecCGI
The important part is the
L
flag which stands for Last Docs. It will prevent the other rules to run.If you want to resolve the filename dynamically but you don't want to use PHP to provide the actual file but your apache server, you can still use PHP to resolve the filename by creating a dynamic rewrite map Docs, search for External Rewriting Program.