.htaccess redirect root to index.php

后端 未结 3 1254
萌比男神i
萌比男神i 2021-01-04 10:08

I need to redirect from http://example.com/ to http://example.com/index.php.

3条回答
  •  北荒
    北荒 (楼主)
    2021-01-04 10:58

    Try this:

    RewriteEngine On
    RewriteBase /
    
    RewriteCond %{REQUEST_URI} ^$
    RewriteCond %{HTTP_HOST} ^example.com$
    RewriteRule ^$ http://example.com/index.php [L,R=301]
    

提交回复
热议问题