0

次のhtaccessファイルがあります

Options +FollowSymLinks

RewriteEngine On

#profile view
RewriteRule ^([a-zA-Z0-9.]+)/?$ profile.php?id=$1

URLにアクセスして入力するとhttp://www.mysite.com/username

次に、profile.phpファイルに私が持っています

<?php
    print_r($_GET);
    die();
?>

そしてそれは印刷されます

Array ( [id] => profile.php )

印刷すべき場所

Array ( [id] => "username" )

それで、私の書き換えルールに何か問題があると思いますか?

4

3 に答える 3