如何在 PHPDesktop 中使用 .htaccess?
how to use .htaccess with PHPDesktop?
我正在尝试让我的 .htaccess
文件与 PHPDesktop 一起使用,但 .htaccess
似乎不起作用。我看到可以在 settings.json
文件中隐藏特定文件,但似乎非常有限。有没有办法使用我的 .htaccess
文件而不是 settings.json
文件?这是我用于 .htaccess
文件的内容:
RewriteEngine On
RewriteRule ^public/(.+) public/ [END] # allow direct access on public folder
RewriteRule ^ index.php [END] # anything else will be directed to index.php
不,您不能将 .htaccess 与 PHP 桌面一起使用。 PHP Desktop 嵌入了一个不支持此类配置文件的 Mongoose Web 服务器。
您的 .htaccess 中的重写规则可以通过将 settings.json 文件中的 web_server > 404_handler
设置为 /index.php
.
来处理
我正在尝试让我的 .htaccess
文件与 PHPDesktop 一起使用,但 .htaccess
似乎不起作用。我看到可以在 settings.json
文件中隐藏特定文件,但似乎非常有限。有没有办法使用我的 .htaccess
文件而不是 settings.json
文件?这是我用于 .htaccess
文件的内容:
RewriteEngine On
RewriteRule ^public/(.+) public/ [END] # allow direct access on public folder
RewriteRule ^ index.php [END] # anything else will be directed to index.php
不,您不能将 .htaccess 与 PHP 桌面一起使用。 PHP Desktop 嵌入了一个不支持此类配置文件的 Mongoose Web 服务器。
您的 .htaccess 中的重写规则可以通过将 settings.json 文件中的 web_server > 404_handler
设置为 /index.php
.