我有一个.htaccess代码
www.site.com/article.php?param1=val¶m2=val¶m3=val
它在xampp localhost上运行,但在PHP主机上不运行:
RewriteCond %{REQUEST_URI} !^/admin
RewriteCond %{REQUEST_URI} !^/images
RewriteCond %{REQUEST_URI} !^/icons
RewriteRule ^([0-9a-zA-Z-_]+)/([0-9a-zA-Z_-]+)/([0-9a-zA-Z_-]+) article.php?x=$1&y=$2&article_id=$3 [NC]
当我用它来主持它时:
this page is not working(500)