2013-08-31 53 views
0

我一直在嘗試這個:playerstats.php?player = Notch將導致www.example.com/Notch,但問題是每個方法,我嘗試它的結果500內部服務器錯誤。htaccess重寫規則與PHP GET變量導致500內部錯誤

RewriteEngine on 
RewriteRule ^([^/]*)\$ playerstats.php?player=$1 [NC,L,QSA] 

我使用NGINX也如果那是任何關注

+0

那是什麼阿帕奇報告錯誤? – Colin

回答

0

這種替換代碼:

RewriteEngine on 

RewriteRule ^([^/.]+)/?$ playerstats.php?player=$1 [L,QSA]