WordPress Memory limit Increase by Rokon No Comments 24 Oct/24 define(‘WP_MEMORY_LIMIT’, ‘512M’); Read More
How to remove .html extensions using .htaccess by Rokon No Comments 13 Jan/17 To open .htaccess file using FTP and add these following codes RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)\.html$ /$1 [L,R=301] Read More