我在test.php
上有一个名为www.example.com/test.php
的文件。现在我希望如果您访问www.example.com/directory/test.php
,您会看到test.php
的内容。
所以我不想进行301重定向。但我确实希望人们访问www.example.com/directory/test.php
。唯一的方法是在我的FTP中创建一个名为directory
的新文件夹并将其上传到那里?
答案 0 :(得分:1)
您不必创建名为'directory'的新目录,您可以
RewriteRule ^directory/test\.php$ http://example.com/test.php [P]
代替。