CSS:
Codes can be injected into Appearance / Editor / Styles
This code will hide all the pages title on wordpress:
.page .entry-title {
display: none;
}
This code will only hide the page titled (named) Home:
.home .entry-title {
display:none;
}
mod_rewrite
mod_rewrite is a part of Apache server that can rewrite requested urls on the fly.
To enable mod_rewrite in Ubuntu, you just need to write this command in terminal
sudo a2enmod rewrite
Then: restart apache