I’m launching a site from my local development server to my host. I’ve renamed the root index.php file as per the support docs, but there is a problem. The home page renders correctly, but everywhere I’ve used the path=“group/template” function the URLs appear as
<a href="http://domain.com/myhome?/group/template">http://domain.com/myhome?/group/template</a>instead of
<a href="http://domain.com/myhome/group/template">http://domain.com/myhome/group/template</a>My .htaccess file is currently:
DirectoryIndex myhome index.php index.shtml index.html index.htm
<Files myhome>
ForceType application/x-httpd-php
</Files>And the control panel field for the nenamed index.php file is “myhome”
I’ve emailed my host to make sure the .htaccess is correct, but posted here for other suggestions.
Thanks!
-r