0

我知道这很简单,但我无法正确处理。如何改变这个:

http://example.com/page.php?type=article

进入

http://example.com/page/article
4

1 回答 1

1
Options +FollowSymLinks  
RewriteEngine On  

RewriteCond %{SCRIPT_FILENAME} !-d
RewriteCond %{SCRIPT_FILENAME} !-f    
RewriteRule ^page/([^/\.]+)/?$ page.php?type=$1 [NC,B,L]
于 2012-08-20T19:03:19.580 回答