Reputation: 153
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
Reputation: 143906
Try:
RewriteRule !^(?:index\.(php|html)|)$ - [L,R=410]
That will also cover index.php
and index.html
.
Upvotes: 1