2014-10-09 33 views

回答

1

它由.htaccess文件制成,您可以在其中为您的网站/服务器制定规则。 通过具有http://stackoverflow.com/questions/ask作为服务器将它解释为http://stackoverflow.com/questions/ask.phphttp://stackoverflow.com/questions/ask.html地址...

您可以检查this site

3

在您的域的根文件夹中添加.htaccess文件与下面的代码:

RewriteEngine On 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ $1.html [L] 
相关问题