リダイレクトを使用して作業する必要がある2つのURLがあります。
example.com/john_doeおよびwww.example.com/john_doe
これらは両方ともなる必要があります>>
www.example.com/?name=john_doeまたはexample.com/?name=john_doe
これが私の.htaccessファイルです:
Options +FollowSymlinks
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/code(.*)$ [NC]
RewriteRule ^(.*)/$ http://example.com/index.php?name=$1 [R=301,L]
私は何時間もこれに頭をぶつけてきました!