Reputation: 1301
I want to change index.php to index1.php in joomla eg :
Now it is www.domain.com/index.php?option=com_content.....
I want change to :
www.domain.com/index1.php?option=com_content.........
Upvotes: 0
Views: 2520
Reputation: 10609
In Joomla, index.php is the starting point for every single "page" that can be displayed by the CMS. Trying to change that would require extensive changes to the Joomla core. I would highly recommend not doing that, you will regret it. You have a couple of options -
Use index.html or maybe default.php for the other info you want. You can change the order that the web server uses the default file so that one of those comes up before index.php
Put Joomla in a subdirectory
Upvotes: 2