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