Configuration->Ultimate URLs->Enable alternate URLs? Yes
When i try to navigate the catalog i get various errors relating to not being able to find files.
I suspect that cause is related to .htaccess. I am running on a Sietground hosting service. Could you give me any guidance what might need to be changed to resolve the problem.
The .htaccess in the root looks like this: one line
#AddHandler application/x-httpd-php70 .php .php5 .php4 .php3
The .htaccess in the public_html:
RewriteCond %{HTTP_HOST} ^tennesseeflyfishing.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.tennesseeflyfishing.com$
RewriteCond %{REQUEST_URI} !^/[0-9]+..+.cpaneldcv$
RewriteCond %{REQUEST_URI} !^/.well-known/pki-validation/[A-F0-9]{32}.txt(?:\ Comodo\ DCV)?$
RewriteRule ^/?$ "http://tennesseeflyfishers.org" [R=301,L]
#Weebly Additions Start
ErrorDocument 404 /w_api/Handler.php
RewriteEngine on
RewriteCond %{HTTP_HOST} !^tennesseetraditionalflies.com [NC]
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTPS}:s (on:(s)|off:s)
RewriteRule ^/?(.*) http%2://tennesseetraditionalflies.com/$1 [L,R=301,NE]
Options
RewriteEngine on
RewriteCond %{REQUEST_URI} !-f
RewriteRule ^ajax/(.*)$ /w_api/Handler.php [L]
RewriteBase /
RewriteRule ^$ index.html [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /w_api/Handler.php
#Weebly Additions End