我在htacess文件中重定向了分类链接时遇到问题 你能查看我遗失的内容吗? 新闻链接有效,但类别链接不。
我想重定向链接机智htaccess
Category link example:
site url/3159-economi.html
// Catogory Original link
cats.php?id=catid
// Catogory Seo link
$news_url_seo = $row[catid]."-".seo($row[category]);
// News Original link
details.php?id=id
// News seo link
$news_url_seo = $anews[id]."-".seo($anews[title]).".html";

Htaccess链接
RewriteEngine On
RewriteBase /
RewriteRule ^(.*)-(.*).html$ details.php?id=$1&$title=$1 [L,NC]
RewriteRule ^(.*)-(.*)$ news.php?catid=$1&$category=$1 [L,NC]