初めての.htaccessファイルを作成しています。「 」ディレクトリが存在するlocalhost/home/user/
場合localhost/index.php?home&id=user
でも、に書き換える方法を知りたいです。home
これは可能ですか?
それを行うのは悪い習慣ですが、本当にこれが必要な場合は、次の行が必要です。
RewriteEngine On
RewriteBase /
#(things you want to do beforehand)
RewriteCond %{HTTP_REFERER} !^$
RewriteRule !^http://localhost
/index.php?home&id=user [R,L]
#(things you want to do after redirect)
$1
(使用するセキュリティに応じて、'user' の代わりに必要になる場合があります。また$_SERVER['PHP_AUTH_USER']
、Apache から .htpasswd を使用する場合は PHP から)
もちろん、さまざまなフラグを追加できます。RewriteRule フラグのドキュメントはこちらです。