0

我目前有这种格式的 URL:

http://www.domain.com/game.php?id=3434&title=title-goes-here

我希望将 URL 写为:

http://www.domain.com/ID/title-goes-here.html

我该怎么做呢?

4

1 回答 1

1

试试这个:

在您网站的根目录中创建一个 .htaccess 文件并将其放入其中。

RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /game.php?id=$1&title=$2 [L]
于 2013-01-11T10:20:45.363 回答