我目前的 .htaccess 是这样的
RewriteBase /
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^([a-zA-Z0-9_-]+)$ article_page.php?id=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ article_page.php?id=$1
这足以像 example.com/how-stuff-works 那样重写 URL,因为网站运行得很好
但是,如果我想将 .html 添加到末尾,例如 example.com/how-stuff-works.html,则会出现 404 错误。
请帮助我修改我的 .htaccess 文件,以便它也可以集成 Dot 或 (.html) 。