Link to index page of website

前端 未结 3 1859
有刺的猬
有刺的猬 2021-02-02 10:00

Is there a way to link to the index page of a website without specifying the name of the index page or the full website URL?

I have this:



        
3条回答
  •  滥情空心
    2021-02-02 10:44

    Create a ".htaccess" file and upload to your host public folder

     
    RewriteEngine On
    
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/ 
    RewriteRule ^index\.html$ http://www.yourwebsite.com.ph/ [R=301,L]
    RewriteCond %{THE_REQUEST} \.html 
    RewriteRule ^(.*)\.html$ /$1 [R=301,L]
    
    

提交回复
热议问题