how to use FB API for creating and updating FB ads?
how to provide different redirects at login when using #laravel Fortify or #jetstream
https://talltips.novate.co.uk/laravel/laravel-8-conditional-login-redirects
Comments
How do I view events fired on an element click in Chrome DevTools?
open console and execute this command, it will monitor every click
monitorEvents(document.body, 'click')
Comments
9 bad habits unsuccessful people!
Comments
#htaccess redirect www to non www
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Comments