【发布时间】:2009-06-26 02:04:31
【问题描述】:
所以已经将我丑陋的 php URL 改写成更漂亮的东西:
RewriteEngine On
RewriteRule ^main/photo([^/\.]+)/?.html$ main/details.php?gid=$2pid=$1
但是,现在我想强迫任何人去
http://www.example.com/main/details.php?gid=20&pid=5
重定向到
htto://www.example.com/main/photo5.html
我已经尝试了以下 RewriteCond:
RewriteCond %{REQUEST_URI} ^/main/details\.php [NC]
RewriteRule ^main/details.php?gid=(.*)&pid=(.*) http://www.example.com/main/photo$1.html [R=301,L]
但这没有用。有什么想法吗?
【问题讨论】:
标签: apache mod-rewrite