Worth noting that any files starting with a . are considered hidden, which could be why you can't see it. Here's what it should contain
# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.
# 2. In your abantecart directory rename htaccess.txt to .htaccess.
# For any support issues please visit: http://forum.abantecart.com
Options +FollowSymlinks
# Prevent Directoy listing
Options -Indexes
# Prevent Direct Access to files
<FilesMatch "\.tpl">
Order deny,allow
Deny from all
</FilesMatch>
# SEO URL Settings
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)\?*$ index.php?_route_=$1 [L,QSA]
(had to put in php tags sorry as code tags aren't working)