标签: .htaccess url redirect
我有一个网址condo-search.co并且它加载了一个空白页面,我想将它指向condo-search / en / index.php我该怎么做才能使用htaccess?
答案 0 :(得分:1)
您可以添加:
RedirectMatch 301 ^/$ /en/index.php
在您的文档根目录的htaccess文件中。或者,如果您不希望外部重定向:
RewriteEngine On RewriteRule ^$ /en/index.php [L]