这是我的 .htaccess 代码,
<IfModule mod_rewrite.c>
RewriteEngine On
#RewriteCond %{REQUEST_URI} /view-([a-zA-Z0-9_-]+)/$
RewriteRule ^view-([a-zA-Z0-9._-]+)/$ post.php?id=$1
</IfModule>
即, id=$1 = my-first-&-thread++ 来自 post.php 文件。
链接变成
http://site.com/view-my-first-&-thread++/
并给出错误 404。
我希望我的链接是这样的:
http://site.com/view-my-first-thread/
这怎么可能?请帮助