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.
我想让人们访问我的根域目录上的文件,而不必指定文件扩展名。
因此,例如,当前存在浏览器可以通过 www.mysite.com/z9.html 访问的 z9.html。我想让人们输入 www.mysite.com/z9 来获取文件。
排序顺序是查找以 .php 扩展名提交的名称的文件,然后,如果没有找到,则查找该名称以 .html 扩展名的文件。
我不知道为什么我的问题被否决了。对于 Apache 小组来说,这似乎是一个完全合理的问题。答案是使用 Apache 的 mod_rewrite:
要将没有扩展名的任何文件名映射到该文件名 + .html,请将以下内容放在 .htaccess 中:
RewriteRule ^/([^.]+)$ /$1.html [L]