我有页面 www.mysite.com/more.php?book=1 我想创建像 www.mysite.com/book-title.html 这样的链接我该怎么做?
在我的页面 www.mysite.com/more.php?book=1 我生成这样的网址
$res = mysql_query("SELECT * FROM book WHERE id_book={$_GET['book']}");
while ($rw = mysql_fetch_object($res)){
$title = strtolower(str_replace(" ", "-", $rw->title)).'.html';
}
我有 $title,但我不知道如何在 .htaccess 中的 mod 重写中使用它来获取 url www.mysite.com/book-title.html
我希望我设法解释了我想做什么。提前致谢。