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

后端 未结 5 1338
萌比男神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:29

    The Redirect directive is the proper way to do this. You should put the following in your virtual host configuration:

    Redirect 410 /blog
    

    If you don't have access to the virtual host configuration, you can put it in the .htaccess file in your document root, or I believe you can put the following in the .htaccess file in the blog subdirectory:

    Redirect 410 /
    

    (I might be off about that, I'm not sure how exactly Redirect interacts with path resolution in .htaccess files)

提交回复
热议问题