jrcollins
jrcollins

Reputation: 153

returning 410 response header for deleted pages

I accidently trashed my website and want to remove all indexed urls except the home page from Google and start over. Can anyone tell me how to create a .htaccess rewrite rule to return a 410 response header for all urls except the home page?

Upvotes: 1

Views: 312

Answers (1)

Jon Lin
Jon Lin

Reputation: 143906

Try:

RewriteRule !^(?:index\.(php|html)|)$ - [L,R=410]

That will also cover index.php and index.html.

Upvotes: 1

Related Questions