我正在尝试重定向那种 URL:
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]
它有什么问题?