0

我有一个简单的重定向:

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

在我的 htaccess 文件中:root_dir/my_site/my_section/test.php

问题是它重定向到 root_dir/index.php 而不是 root_dir/my_site/my_section/index.php

我如何重定向到同一个文件夹?

4

1 回答 1

1

将您的 RewriteBase 更改为

RewriteBase /my_site_/my_section
于 2012-05-10T14:08:09.197 回答