Pretty Urls Version 8 and .htaccess
This tutorial is over a year old and may not apply to your version of Concrete CMS.
Jul 21, 2016
Example .htaccess for Apache
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /concrete/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
Here's the step by step doc on how to set up pretty urls.