SEO & Deployment Audit
Checklist for deploying COLORJET Bangladesh website with SEO, schema, sitemap, speed and hosting rules.
Meta Titles
Core pages, category pages, product pages and blogs include SEO titles.
Schema
Organization, LocalBusiness, Product, FAQ and BlogPosting schema are included.
Sitemap
sitemap.xml includes main pages, products, categories, blog posts and V6 pages.
Robots
robots.txt is included for search engine crawling.
Real Images
Replace placeholders with final compressed WebP/JPG images where needed.
PDF Downloads
Replace placeholder PDF files inside assets/downloads/ with final catalog files.
Recommended .htaccess
Already added in the ZIP package.
# COLORJET Bangladesh - Recommended .htaccess
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
# Force HTTPS
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Remove trailing index.html
RewriteCond %{THE_REQUEST} /index\.html [NC]
RewriteRule ^(.*/)index\.html$ /$1 [R=301,L]
</IfModule>
# Browser cache
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/javascript "access plus 1 month"
ExpiresByType image/png "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/webp "access plus 1 year"
ExpiresByType image/svg+xml "access plus 1 year"
</IfModule>
# Compression
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/css application/javascript application/json image/svg+xml
</IfModule>