currently the new site’s URL: https://www.brickst.com/newsite/
it will eventually, once finished, be moved to replace the entire site at the root of https://www.brickst.com
htaccess in root of URL(I guess created by web host?) says:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName brickst.com
AuthUserFile /home/brickst/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/brickst/public_html/_vti_pvt/service.grp
RewriteEngine On
on the .htaccess in /newsite/ directory, I have tried varied code with no positive result. Currently says:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>