没有HTML等扩展的URL如何工作?

时间:2014-10-09 05:56:05

标签: html url uri

例如,

https://stackoverflow.com/questions/ask

问没有.html,但带我到我想要的页面。这一切都有用吗?我在哪里可以了解更多相关信息?

2 个答案:

答案 0 :(得分:1)

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

您可以查看this site

答案 1 :(得分:0)

使用以下代码在域的根文件夹中添加.htaccess文件:

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