我需要重写这个 url:
http://localhost/blog/post.php?id=48
在
http://localhost/blog/post/48
我的 xampp 的 localhost 中。我已经创建了 .htaccess 文件并编写了下面的代码来工作。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^post/([0-9]+)/?$ post.php?id=$1 [NC,L]
</IfModule>
我已经尝试过重定向和所有其他的东西。一切正常,但仅我的重写规则不起作用。我已经搜索并尝试了所有选项,但我无法成功。请任何人帮助我解决这个问题!