htaccess-如何从 url 中删除“index”

htaccess-如何从 url 中删除“index”
RewriteEngine on  
RewriteBase /  
AddDefaultCharset utf-8

RewriteCond %{HTTP_HOST} ^(?!www\.)(.+) [NC]
RewriteRule ^(.*) http://www.%1/$1 [R=301,NE,L]

ErrorDocument 404 https://%{HTTP_HOST}
Options All -Indexes

RewriteRule ^index$ ./user/index.php [L,NC]

以上是 .htaccess 代码。当我访问网站主页时,它会显示 websitename.com/index。我想让它只在我访问网站主页时显示 websitename.com。

我如何使用 .htaccess 来做到这一点,或者只能从托管服务器设置中做到这一点吗?请告诉我需要哪些设置才能获得所需的结果。

答案1

最后,下面的代码对我有用。

RewriteRule ^$ ./user/index.php [L,NC]

相关内容