Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^news/([^/]+) /casino2/newsdetail.php?newsid=$1 [NC]
目前使用上面的代码转换http://localhost/casino2/newsdetail.php?newsid=3
到
http://localhost/casino2/news/3
现在有什么问题我试图从两个查询字符串中创建一个 url,比如如果 url 是localhost/casino2/newsdetail.php?newsid=3
& pagename=article
url 应该 localhost/casino2/news/article
是可以这样做吗?