私が使用した .htacess ルール -
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/\.]+)/?$ profile.php?user=$1 [L]
RewriteRule ^(.*)$ profile.php?user=$1 [QSA,NE]
正しい例 -
http://mydomain.com/http://fatalweb.com/articles/8/definitions-for-htaccess-regex-character
$1 に渡される値は -http://fatalweb.com/articles/8/definitions-for-htaccess-regex-character
http://mydomain.com/https://www.google.com/search?q=_get&ie=utf-8&oe=utf-8&aq=t
$1 に渡される値は -https:/www.google.com/search
https://www.google.com/search?q=_get&ie=utf-8&oe=utf-8&aq=t
すべてのクエリ パラメータとともにURL 全体が $1 に渡されるようにするにはどうすればよいですか