我已經搜索過,但是這裏的所有例子都不適合我。修改Mod_rewrite規則,將文章標題添加到URL
I have a $_SESSION['title']; //Session variable contains title from calling page
$title = $_SESSION['title']; //local variable contains article title
比方說,文章的標題是新聞的最天 如何修改我的規則來
http://www.newstoday.com/readnews/12/news-of-the-day
BTW http://www.newstoday.com/readnews/12 //this works
RewriteEngine on
RewriteRule ^readnews/([0-9]+)$ readnews.php?news_art_id=$1
我該如何在html鏈接中使用此鏈接? –
這兩個你的網址 http://www.newstoday.com/readnews/12/news-of-the-day http://www.newstoday.com/readnews/12 將重定向到readnews.php腳本,您可以從$ _GET ['news_art_id']和「$ news」(對於第二種情況是「」)從$ _GET ['other_params']獲得「12」 ; 從php生成這樣的鏈接: $ id = 0; //假設這是你的編號 $ title = $ _SESSION ['title']; $ link ='http://www.newstoday.com/readnews/'。 $ id。 '/'。 $稱號; –