2

初めての.htaccessファイルを作成しています。「 」ディレクトリが存在するlocalhost/home/user/場合localhost/index.php?home&id=userでも、に書き換える方法を知りたいです。home

これは可能ですか?

4

1 に答える 1

1

それを行うのは悪い習慣ですが、本当にこれが必要な場合は、次の行が必要です。

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 フラグのドキュメントはこちらです。

于 2013-06-24T11:25:23.723 に答える