我有以下htaccess文件不工作的htaccess重寫規則正確
Options +FollowSymLinks
RewriteEngine On
#profile view
RewriteRule ^([a-zA-Z0-9.]+)/?$ profile.php?id=$1
當我去我的網址,並輸入http://www.mysite.com/username
然後在profile.php文件我有
<?php
print_r($_GET);
die();
?>
並打印出來
Array ([id] => profile.php)
它應該打印出來
Array ([id] => "username")
,所以我想有一些錯誤的,我重寫規則?
賓果,謝謝... – fxuser
@fxuser希望它有助於:) – 2013-07-19 12:52:27