这是我的原始链接
http://localhost/xx/xx/public_html/news.php?id=7
我想把它改成
http://localhost/xx/xx/public_html/news-7-TitleOfNews.html
这是我的 htaccess
Options -Indexes
ErrorDocument 404 www.site.com/404.html
RewriteEngine On
RewriteRule ^news-([0-9]*)(?:-([0-9a-zA-Z*]))?(?:\.html)?$ news.php?id=$1 [L]
但它不起作用(重定向到 404 页面)