我正在尝试重定向这种网址:
http://mydomain.com/Site/1-Test.htm
致:
http://mydomain.com/index.php?View=Site&Par=1
使用apache2和mod_rewrite,但我找不到让它工作的方法。
以下是我在.htaccess文件中使用的代码:
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)/(.+)-(.+)\.htm$ index.php?View=$1&Par=$2 [QSA,L]
它出了什么问题?