我有以下需要用 .htaccess 重写的 url 例如,我将使用网站的新闻部分。
www.example.com/news/ -works
www.example.com/news/latest/ -works
www.example.com/news/1/this-is-news -does not work
这是我当前 .htaccess 的一部分,用于“新闻”部分。
RewriteRule ^news/? index.php?view=news [L]
RewriteRule ^news/([^/\.]+)/([0-9]+)/?$ index.php?view=news&task=$1&page=$2 [L]
RewriteRule ^news/([0-9]+)/?$ index.php?view=news&id=$1 [L]