我使用.htaccess进行重定向问题 当我点击example.com/en/drive时,它将重定向到example.com/en/。 类似的当我使用index.php“example.com/en/drive/index.php”它工作正常。
htaccess代码看起来像这样
RewriteOptions inherit
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]
<IfModule mod_rewrite.c>
RewriteRule ^$ /en/ [R=301,L]
</IfModule>
DirectoryIndex home.html index.htm index.html index.php
任何解决方案?请帮忙。 tahnks