ソーシャル ネットワーク用のフレンドリ URL を作成したい。サンプルのプロファイル リンクである phpDolphin スクリプトを使用http://sample.com/index.php?a=profile&u=admin
している。プロファイル URL を次のようにしたい。http://sample.com/admin
私のhtaccessファイル
RewriteEngine on
RewriteCond %{request_filename} -f
RewriteRule ^(.*) $1 [L]
RewriteRule ^(([^/]*)+)(/([^/]{0,32})(/.+)?)?$ index.php?a=$1&q=$3 [L]