Hi,
Just looking at the instructions on this page -
I just have a query as regards what to replace with my own setup with the .htaccess code below -
would I just replace the words ‘template_group’ with ‘site’ (the EE default I want to eliminate) ?
or should it work as is? ( not ready to test just yet)
RewriteEngine On
#Handle comment redirection
RewriteCond %{THE_REQUEST} !^POST
RewriteRule ^template_group/?(.*)$ /sub_directory/$1 [R=301,L]
#Handle removal of index.php and template group from EE URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /sub_directory/index.php/template_group/$1 [L]
( I know some moderators have posted against doing this at all but I am re-designing an existing site and need to keep the url structure, and hey, even EE is doing it on their site, likewise happycog and other users of EE)