Update – wordpress did manage to edit the .ht access in the /technolotics/ folder (where the index.php lives) but the comments and permalink are still dead.
Here’s the content of the .htaccess if it helps…
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /technolotics/
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ – [S=35]
RewriteRule ^feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?&feed=$1 [QSA,L]
RewriteRule ^(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?&feed=$1 [QSA,L]
RewriteRule ^page/?([0-9]{1,})/?$ /technolotics/index.php?&paged=$1 [QSA,L]
RewriteRule ^comments/feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?&feed=$1&withcomments=1 [QSA,L]
RewriteRule ^comments/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?&feed=$1&withcomments=1 [QSA,L]
RewriteRule ^comments/page/?([0-9]{1,})/?$ /technolotics/index.php?&paged=$1 [QSA,L]
RewriteRule ^search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?s=$1&feed=$2 [QSA,L]
RewriteRule ^search/(.+)/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?s=$1&feed=$2 [QSA,L]
RewriteRule ^search/(.+)/page/?([0-9]{1,})/?$ /technolotics/index.php?s=$1&paged=$2 [QSA,L]
RewriteRule ^search/(.+)/?$ /technolotics/index.php?s=$1 [QSA,L]
RewriteRule ^blog/category/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?category_name=$1&feed=$2 [QSA,L]
RewriteRule ^blog/category/(.+)/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?category_name=$1&feed=$2 [QSA,L]
RewriteRule ^blog/category/(.+)/page/?([0-9]{1,})/?$ /technolotics/index.php?category_name=$1&paged=$2 [QSA,L]
RewriteRule ^blog/category/(.+)/?$ /technolotics/index.php?category_name=$1 [QSA,L]
RewriteRule ^blog/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?author_name=$1&feed=$2 [QSA,L]
RewriteRule ^blog/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?author_name=$1&feed=$2 [QSA,L]
RewriteRule ^blog/author/([^/]+)/page/?([0-9]{1,})/?$ /technolotics/index.php?author_name=$1&paged=$2 [QSA,L]
RewriteRule ^blog/author/([^/]+)/?$ /technolotics/index.php?author_name=$1 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?year=$1&monthnum=$2&day=$3&feed=$4 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /technolotics/index.php?year=$1&monthnum=$2&day=$3&paged=$4 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$ /technolotics/index.php?year=$1&monthnum=$2&day=$3 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?year=$1&monthnum=$2&feed=$3 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?year=$1&monthnum=$2&feed=$3 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$ /technolotics/index.php?year=$1&monthnum=$2&paged=$3 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/?$ /technolotics/index.php?year=$1&monthnum=$2 [QSA,L]
RewriteRule ^blog/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?year=$1&feed=$2 [QSA,L]
RewriteRule ^blog/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?year=$1&feed=$2 [QSA,L]
RewriteRule ^blog/([0-9]{4})/page/?([0-9]{1,})/?$ /technolotics/index.php?year=$1&paged=$2 [QSA,L]
RewriteRule ^blog/([0-9]{4})/?$ /technolotics/index.php?year=$1 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$ /technolotics/index.php?year=$1&monthnum=$2&name=$3&tb=1 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?year=$1&monthnum=$2&name=$3&feed=$4 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$ /technolotics/index.php?year=$1&monthnum=$2&name=$3&feed=$4 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$ /technolotics/index.php?year=$1&monthnum=$2&name=$3&paged=$4 [QSA,L]
RewriteRule ^blog/([0-9]{4})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$ /technolotics/index.php?year=$1&monthnum=$2&name=$3&page=$4 [QSA,L]
</IfModule>
# END WordPress