我的 .htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^-([0-9]+) /simpleblog/index.php?post_id=$1
这就是格式化链接的方式。
<a href = "index.php?post_id=<?php echo $post['posts_id']; ?>-<?php echo $post['title']; ?>"><?php echo $post['title'];?></a>
现在链接是这样的:
http://localhost/simpleblog/index.php?post_id=15-First%20Post
我希望链接是这样的:
http://localhost/simpleblog/post/First-Post
我是使用 .htaccess 的新手。我不知道如何正确使用它。那么如何按照我想要的方式制作链接呢?