Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果它们存在于子目录中,我想重定向到静态 html 文件。
我想知道一个小的 php 脚本作为 htaccess RewriteCond 是否会更高效。
有人对此有经验吗?
非常感谢。
通过 mode_rewrite(在 httpd.conf 或 .htaccess 中)执行此操作将比通过 PHP 脚本执行此操作更有效。
想一想,在 PHP 中执行此操作将需要 Apache 加载 mod_php 模块,然后将调用 PHP 解释器并编译并执行您的 PHP 脚本。如果您在 .htaccess 本身中处理它,则可以跳过所有这些。