答案 0 :(得分:1)
它来自.htaccess
文件,您可以在其中为您的网站/服务器制定规则。
通过将http://stackoverflow.com/questions/ask
作为地址,服务器会将其解释为http://stackoverflow.com/questions/ask.php
或http://stackoverflow.com/questions/ask.html
...
您可以查看this site
答案 1 :(得分:0)
使用以下代码在域的根文件夹中添加.htaccess文件:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ $1.html [L]