autoptimze by itself will not help. it needs a cache plugin as well.
Asset CleanUp Pro: Page Speed Booster to disable individual scripts and styles from loading on certain pages.
WP Rocket for caching
Autoptimize for everything else
CAOS
Favicon by RealFaviconGenerator
Imagify
OMGF
Swap Google Fonts Display
Cache-control
WP HTaccess Editor and add this
## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 month"
ExpiresByType image/jpeg "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"
</IfModule>
## EXPIRES CACHING ##