我正在尝试使用这样的 URL 优化一个站点/category.php?show=numberID
我想要这样的东西:/category/numberID/
例如我想:http://example.com/category.php?show=8
成为http://example.com/category/8/
我用谷歌搜索并遇到了这个.htaccess
:
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
RewriteRule ^category/([^/]*)/$ /category.php?show=$1 [L]
这段代码有什么问题,请不要给我发一些教程链接,因为我看了很多,我只是想要你的建议。