我想知道是否有可能拥有像www.example.com
这样的域,并且有一个像www.example.com/test_dir
这样的目录,并且在test_dir
中有一个名为test.html
的文件和另一个名为test2.html
且使用.htaccess
或其他方式的文件www.example.com/test_dir
重定向到www.example.com/test_dir/test.html
?
由于
答案 0 :(得分:1)
您可以在root .htaccess
中使用:
RewriteEngine On
RewriteRule ^test_dir/?$ test_dir/test.html [NC,L]
如果您想更改网址。使用:[NC,R=301,L]