2
我想將帖子ID移動到URL中的最後一個位置。就像這樣:RewriteRule:在URL中移動ID文章
http://www.mysite.com/news/123-post.html
到
http://www.mysite.com/news/post-123.html
原始的htaccess
RewriteRule ^([^.]+)/([0-9]+)-(.*).html$ index.php?newsid=$2&seourl=$3&seocat=$1 [L]
我改變
RewriteRule ^([^.]+)/(.*)-([0-9]+).html$ index.php?newsid=$2&seourl=$3&seocat=$1 [L]
,並粘貼在瀏覽器新的URL http://www.mysite.com/news/post-123.html但它不工作
你能告訴你完成,你可以優化通過確保
seourl
不包含任何斜槓(/
)您的規則。 htaccess文件? – anubhava