And welcome
So :
1) Better for many reasons, the essential one being they continue to be developed and are coming with a complete SEO suite :
mx Google sitemaps,
mx sitemaps, add ons and many more in the future. The phpBB SEO project's plan are to made all this ready as well for phpBB 3, so this is to take into consideration when the able2know mod rewrite seems to be abandoned.
Then technically, the reason are more or less well described
here : not a single pagination duplicate, a faster code as we do not use ob_start any more and a wider range of URL standard to choose from. The able2know mod rewrite is comparable to the phpBB SEO simple one, but as many more duplicate and is slower. The idea being to totally get rid off all duplicates, the zero duplicate already being redirecting everything we don't want, next step will be not to output any post URL, as on this forum.
This will be part of the update I am working on.
2) Yes it is safe thanks to the zero duplicates, you can migrate to any mod rewrite you want here, it's just a matter of doing the change when really ready and following a simple procedure. I just posted
this one about this
The change would only concern the forum.
3) Same as 2), the idea is developed in the mentioned link, we'll redirect anything but the exact correct URL we want, zero duplicate is really zero here
4) Should not be a problem with any of these mods.
attachment require a simple fix to work with mx Google sitemaps :
Open :
- Code: Select all
attach_mod/attachment_mod.php
Find :
- Code: Select all
if (file_exists($cache_dir) && is_dir($cache_dir) && is_writable($cache_dir))
Replace with :
- Code: Select all
if (@file_exists($cache_dir) && is_dir($cache_dir) && is_writable($cache_dir))
because the mod is for some reason searching for a cached file that do not exist obviously for mx Google sitemaps, so you could end up with a message telling you "file does not exist". We just turn off the message here, as the attachment code knows what to do in such cases (eg nothing).
rssfeed 2.2.4 is supported, but was not initially designed to output topics URL, being the only ones we want, so there is a
patch to rewrite the post links output ed (the zero duplicate will off course redirect those as well).
I am currently working on a seo rss solution
++