Hi folks
I’m wanting to rename the doman.com/index.php to something a little more descriptive
eg domain.com/webshop.php so that when vistors type in domain.com it uses webshop.php instead of index.php (which is just the index.php renamed)
I’ve read up on the entries for .htaccess but with v2 it seems a little different then the other posts i’ve looked at
can i do the following and keep the site functioning properly?
current .htaccess
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . index.php?sef_rewrite=1 [L,QSA]<br />
<br />
RewriteCond %{REQUEST_FILENAME} .*\/catalog\/.*<br />
RewriteCond %{REQUEST_FILENAME} -d<br />
RewriteCond %{REQUEST_FILENAME}/index.html !-f<br />
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
```<br />
<br />
new .htaccess<br />
```php
RewriteBase /<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . [I][B]webshop[/B][/I].php?sef_rewrite=1 [L,QSA]<br />
<br />
RewriteCond %{REQUEST_FILENAME} .*\/catalog\/.*<br />
RewriteCond %{REQUEST_FILENAME} -d<br />
RewriteCond %{REQUEST_FILENAME}/index.html !-f<br />
RewriteRule . [I][B]webshop[/B][/I].php?sef_rewrite=1 [L,QSA]
```<br />
<br />
and then rename index.php to webshop.php <br />
<br />
do I have to update anything within the skins folder too?<br />
eg index.tpl<br />
<br />
I also found a .htaccess in the skins folder - should any edits be placed in there too?