-2
我原來的鏈接是:我可以隱藏更多的GET參數嗎? (htaccess的)
?action=viewArticle&categoryName=$1&articleId=$2&articleTitle=$3
用的.htaccess修改了它:
RewriteRule ^([^.]+)/([0-9]+)/([^.]+)$ ?action=viewArticle&categoryName=$1&articleId=$2&articleTitle=$3 [L]
我得到這個:
例如:
/News/17/News_title
但我不想顯示文章ID。我想看到這樣的事情:
/News/News_title
幫助我請! :)
如何查詢正確的文章的數據庫?通過'News_title'? –