Hello i can't create the sitemap , this never happen before, could it be possible because .htaccess (i play a lot with mod_rewrite and .htaccess recently)
url: [ External links are visible to forum administrators only ]
sitemap generator: [ External links are visible to forum administrators only ]
sitemap file: [ External links are visible to forum administrators only ]
this is my .htaccess consist of:
RewriteEngine On
RewriteRule ^home/[-a-zA-Z0-9_]*\.html$ index.php?mod=home [L]
RewriteRule ^home/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=home&info=$1 [L]
RewriteRule ^product/[-a-zA-Z0-9_]*\.html$ index.php?mod=product [L]
RewriteRule ^product/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=product&catID=$1 [L]
RewriteRule ^testimonial/[-a-zA-Z0-9_]*\.html$ index.php?mod=testimonial [L]
RewriteRule ^testimonial/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=testimonial&cat=$1 [L]
RewriteRule ^testimonial/([-a-zA-Z0-9_]*)/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=testimonial&cat=$1&kt_insert_first=$2 [L]
RewriteRule ^testimonial/([-a-zA-Z0-9_]*)/([-a-zA-Z0-9_]*)/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=testimonial&cat=$1&kt_insert_first=$2&success=$3 [L]
RewriteRule ^awards/[-a-zA-Z0-9_]*\.html$ index.php?mod=awards [L]
RewriteRule ^store/[-a-zA-Z0-9_]*\.html$ index.php?mod=store [L]
RewriteRule ^store/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=store&cityID=$1 [L]
RewriteRule ^news/[-a-zA-Z0-9_]*\.html$ index.php?mod=news [L]
RewriteRule ^news/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=news&cat=$1 [L]
RewriteRule ^news/([-a-zA-Z0-9_]*)/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=news&cat=$1&news_id=$2 [L]
RewriteRule ^faq/[-a-zA-Z0-9_]*\.html$ index.php?mod=faq [L]
RewriteRule ^faq/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=faq&catid=$1 [L]
RewriteRule ^cart/[-a-zA-Z0-9_]*\.html$ index.php?mod=cart [L]
RewriteRule ^cart/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=cart&step=$1 [L]
RewriteRule ^cart/([-a-zA-Z0-9_]*)/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=cart&step=$1&error=$2 [L]
RewriteRule ^contact/[-a-zA-Z0-9_]*\.html$ index.php?mod=contact [L]
RewriteRule ^botles-how/[-a-zA-Z0-9_]*\.html$ index.php?mod=botles-how [L]
RewriteRule ^botles-health/[-a-zA-Z0-9_]*\.html$ index.php?mod=botles-health [L]
RewriteRule ^botles-view/[-a-zA-Z0-9_]*\.html$ index.php?mod=botles-view [L]
RewriteRule ^cup-how/[-a-zA-Z0-9_]*\.html$ index.php?mod=cup-how [L]
RewriteRule ^cup-health/[-a-zA-Z0-9_]*\.html$ index.php?mod=cup-health [L]
RewriteRule ^cups-view/[-a-zA-Z0-9_]*\.html$ index.php?mod=cups-view [L]
RewriteRule ^search/[-a-zA-Z0-9_]*\.html$ index.php?mod=search [L]
RewriteRule ^privacy/[-a-zA-Z0-9_]*\.html$ index.php?mod=privacy [L]
RewriteRule ^site/[-a-zA-Z0-9_]*\.html$ index.php?mod=site [L]
RewriteRule ^member/[-a-zA-Z0-9_]*\.html$ index.php?mod=member [L]
RewriteRule ^member/([-a-zA-Z0-9_]*)/[-a-zA-Z0-9_]*\.html$ index.php?mod=member&p=$1 [L]
RewriteRule ^registration.success/[-a-zA-Z0-9_]*\.html$ index.php?mod=registration.success [L]
<IfModule mod_gzip.c>
mod_gzip_on Yes
mod_gzip_dechunk Yes
mod_gzip_item_include file \.(html?|txt|css|js|php|pl)$
mod_gzip_item_include handler ^cgi-script$
mod_gzip_item_include mime ^text/.*
mod_gzip_item_include mime ^application/x-javascript.*
mod_gzip_item_exclude mime ^image/.*
mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</IfModule>
# Turn on Expires and set default to 0
#ExpiresActive On
#ExpiresDefault A0
# Set up caching on media files for 1 year (forever?)
<FilesMatch ".(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$">
#ExpiresDefault A29030400
Header set Cache-Control "max-age=29030400,public"
#Header append Cache-Control "public"
</FilesMatch>
# Set up caching on media files for 1 week
<FilesMatch ".(gif|jpg|jpeg|png|swf)$">
#ExpiresDefault A604800
#Header append Cache-Control "public"
Header set Cache-Control "max-age=604800,public"
</FilesMatch>
# Set up 2 Hour caching on commonly updated files
<FilesMatch ".(xml|txt|html|js|css)$">
#ExpiresDefault A7200
#Header append Cache-Control "proxy-revalidate"
Header set Cache-Control "max-age=7200,public"
</FilesMatch>
# Force no caching for dynamic files
<FilesMatch ".(php|cgi|pl|htm)$">
#ExpiresActive Off
Header set Cache-Control "private, no-cache, no-store,proxy-revalidate, no-transform"
Header set Pragma "no-cache"
</FilesMatch>