I would like to 410 an entire directory - I deleted my blog

后端 未结 5 1351
萌比男神i
萌比男神i 2021-02-13 18:46

I had a folder called blog on my site. I deleted it all permanently. I would like to 410 it. How do i 410 an entire folder?

e.g. my site looked like this



        
5条回答
  •  渐次进展
    2021-02-13 19:25

    The following .htaccess would be useful when, for example, you move from a hosting to another and you reorder or delete parts of your web.

    As Apache allows human syntax codes I have used permanent instead of 301 code, and gone instead of 410. You can check http protocol codes here Status Code Definitions

    I placed the file on my root mynewblogaddress.com folder:

    .htaccess

    Redirect permanent /wordpress http://www.mynewblogaddress.com/blog/
    Redirect gone /gallery2   
    Redirect permanent /directory2 http://directory2.mynewblogaddress.com
    

提交回复
热议问题