我有一个网址:
http://www.mysite.com/forum/topic/1234
我需要将其重写为:
http://www.mysite.com/forum/topic/1234-this-is-a-test
这是我所拥有的:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /forum/
RewriteRule ^topic/([0-9]+)$ topic/$1-this-is-a-test [L]
</IfModule>
什么都没发生。有任何想法吗?