Get your Logo and Organization schema back after a Yoast update.
Continue reading "Fixing Yoast Broken Organization and Logo Schema"
With over 16 years experience as a developer in the search engine marketing industry, I'm well versed in website discovery and usability.
I love databases, APIs and the flexibility it gives to the distribution of content. Your content should be as accessible to machines as it is to humans.
He has a curious mind and is a consummate troubleshooter which are key parts of the makeup for the modern web developer.
I wholeheartedly recommend Rob Went and wish him luck on his next endeavour.
Get your Logo and Organization schema back after a Yoast update.
Continue reading "Fixing Yoast Broken Organization and Logo Schema"
How to map a Synology NAS with Windows 11 that you previously had connected with Windows 10
Continue reading "Mapping a Synology NAS Drive in Windows 11"
If you find that PDF files aren’t updating after changes, it could be that they are cached by the browser or a CDN such as Cloudflare.
If you are running on Apache then you can modify the mod_headers block in the /public/.htaccess file to prevent PDF file caching:
<IfModule mod_headers.c>
# Blocks Search Engine Indexing
Header set X-Robots-Tag "noindex, nofollow"
# Prevents PDF File Caching
<FilesMatch ".pdf$">
Header set Cache-Control no-store
</FilesMatch>
</IfModule>