我知道这很简单,但我无法做到。如何改变这个:
http://example.com/page.php?type=article
到
http://example.com/page/article
答案 0 :(得分:1)
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule ^page/([^/\.]+)/?$ page.php?type=$1 [NC,B,L]