我正在尝试重定向article.php?title=variable
到variable/
使用.htaccess
,但我不确定我的代码有什么问题。如果我去http://site.com/variable/
它会将我重定向到http://site.com/article.php//?titlu=article.php
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteBase /
#Rewrite urls for article
RewriteRule ^(.*)/$ article.php?titlu=$1
RewriteRule ^(.*)$ /$1/ [R]
</IfModule>