I'm looking at a site under development (at my wife's work). It's being built with Joomla 2.5.x, and it's using a Kunena template for the forum.
Each page on the site uses a single URL with PHP variables, e.g. www.sitename.com/index?option=com_content&view=article&id=96&Itemid=101
.
However, on the demo site, the suffix is always .html
even though the content is CMS/database-generated.
What I want to know is:
- Why does the site at my wife's work use
.php?...
? - Where in the backend administration portal (to which I have access) are the settings for each
view
(presumably using a MVC framework)? Or are they only available by editing the PHP files directly?
Thanks.
Addendum
I found this documentation which helps explain #1. Still would like an answer to #2.