如何在 Apache 中配置路由?

mem*_*eme 5 html apache routing

我如何隐藏我的 .html 文件,例如当我去 www.mysite.com 它重定向到 www.mysite.com/index.html 但它隐藏了 /\index.html 所以它保持为 www.mysite.com 但实际上是 www.mysite.com/index.html 。我真的不知道如何解释,但如果你理解我,请帮忙,谢谢。

Abh*_*jar 0

试试这个,这里我们设置目录索引,这样我们就不必在每次调用中提及index.html。并重写每个 html,不带扩展名。

DirectoryIndex index.html

RewriteEngine on
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^([\w-]+)$ $1.html [L]
Run Code Online (Sandbox Code Playgroud)