gpt4 book ai didi

.htaccess - 配置 PhpStorm 以使用 .htaccess

转载 作者:行者123 更新时间:2023-12-04 12:32:20 25 4
gpt4 key购买 nike

我加了 .htaccess (用于重写 URL)在我项目的根目录中,但它不起作用。我检查了两次,同一个文件在 Eclipse 中工作正常。

如何配置 PhpStorm 以使用 .htaccess?

最佳答案

  • 确实,PHP's built-in web server will never fully support .htaccess features .注意:它是 PHP 的,不是 PHPStorm 的内置服务器。

  • 但有办法解决。
  • 大多数情况下,重写只是为了将所有非静态文件查询重定向到 index.php .如果您只需要这个,you can set the server's "router script"在 PHPStorm 中运行配置到 index.php .
  • 之后,在 index.php 中进行了一次适度的黑客攻击。从驱动器提供静态文件可能会加快速度。

  • 添加到 index.php 的开头:
    if (preg_match('/\.(?:php|png|jpg|jpeg|gif|ico|css|js)\??.*$/',
    $_SERVER["REQUEST_URI"]))
    {
    return false; // serve the requested resource as-is.
    }

    关于.htaccess - 配置 PhpStorm 以使用 .htaccess,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20569493/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com