我有两个需要使用重定向的 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]
几个小时以来,我一直在努力解决这个问题!