我有两个URL,我需要使用我的重定向工作:
example.com/john_doe和www.example.com/john_doe
这两者都需要成为>>
www.example.com/?name=john_doe OR 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]
我几个小时来一直在打击我的头!