将https域根目录重定向到子文件夹

时间:2019-01-26 18:55:15

标签: apache mod-rewrite https

我想重定向:

“ https:// domain.net”

(此页面没有索引文件,因此列出了文件-不知道为什么-没有索引)

到“ https://domain.net/en”文件夹或“ https://domain.net/hu”

其中有一个index.file。

1 个答案:

答案 0 :(得分:0)

您可以尝试使用以下.htaccess规则:

RewriteEngine on
RewriteCond %{HTTP_HOST} domain\.net [NC]
RewriteCond %{REQUEST_URI} ^/$
RewriteRule ^(.*)$ /en/$1 [L]