Hi
So I’ve asked within another question so I think it might get lost, really need to sort this out.
So I’ve created a .htaccess file and uploaded this to my server. This reads
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# Removes index.php from ExpressionEngine URLs
RewriteCond %{THE_REQUEST} ^GET.*index\.php [NC]
RewriteCond %{REQUEST_URI} !/system/.* [NC]
RewriteRule (.*?)index\.php/*(.*) site/$1$2 [R=301,NE,L]
# Directs all EE web requests through the site index file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ site/index.php/$1 [L]
</IfModule>
My intention is that when viewing pages of the site they are in the order URL/subfolder/site/index.php
or just URL/subfolder/site then the home page shows and the same through the other pages have the template group before page name or indeed instead of the page name when its index.php.
Please help really stuff, I’m sure its just a small mistake in the .htaccess, but can’t see it.
Thanks.