0

私は単純なリダイレクトを持っています:

RewriteEngine On
RewriteBase /
RewriteRule ^test.php$ index.php

root_dir/my_site/my_section/test.php にある私のhtaccessファイルで

問題は、root_dir/my_site/my_section/index.php ではなく root_dir/index.php にリダイレクトしていることです。

同じフォルダーにリダイレクトするにはどうすればよいですか??

4

1 に答える 1

1

RewriteBase を次のように変更します

RewriteBase /my_site_/my_section
于 2012-05-10T14:08:09.197 に答える