Whats your solution for Mass editing Meta Tags of static HTML pages?

knabis

Newbie
Joined
May 10, 2010
Messages
43
Reaction score
32
I'm not talking about automated Bulk editing. More a solution like WEB CEO has.

I mean a Software which 1.) gives me an overview of title/desc./keys of all static html pages i load and 2.) lets me easily edit those (like editing text in an excel file)..

WEBCEOs solution is a good example, does anybody know a standalone Mass-Meta-Edit Software?

Thanks in advance!:D
 
Id propably write a small php script for it.
use REGEX to find all metatags in any given files and then use file_get_contents => STR_REPLACE => fwrite to update those...
the regex for meta description is:

$regex="/<meta name=\"description\" content=\"(.+?)\"/";
preg_match ($filecontent,$regex,$outputarray);
 
Back
Top