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.
我刚刚使用本指南将 Lighttpd 和 PHP 安装到我的 Raspberry Pi 上。
它工作得很好,我有一个不错的小网站。但是,我想摆脱所有 URL 上烦人的 .php 结尾。由于 Lighttpd 不支持 .htaccess 文件,我不知道该怎么做。
由于我不是专家,您可能必须非常具体地了解如何执行此操作。
将以下内容添加到您的/etc/lighttpd/lighttpd.conf文件中:
/etc/lighttpd/lighttpd.conf
index-file.names = ( "index.html", "default.html", "index.php", "default.php" )
更新后lighttpd.conf,重新启动 lighttpd。
lighttpd.conf