我在这两个代码之间有问题
#----------------------------------------------------------------------
# Hide File Extentions
#----------------------------------------------------------------------
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
#-----------------------------------------------------------------------
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ profile.php?username=$1 [L]
RewriteRule ^([a-zA-Z0-9_-]+)/$ profile.php?username=$1 [L]
#-----------------------------------------------------------------------
#-----------------------------------------------------------------------
RedirectMatch 301 ^/buzz/(.*)$ http://buzz.perghhh.com/$1
#-----------------------------------------------------------------------
RewriteRule ^buzz/([^/]*)$ /buzz.php?buzz=$1 [L]
当我输入这样的网址时http://example.com/buzz/17 它就像我要去个人资料页面一样..