Let me share with you a good cms! Very powerful! And Mao10CMS promises to be free and open source forever!
Here is the official introduction:
Mao10CMS is a free and open source PHP website building system developed based on Thinkphp and Bootstrap. It is suitable for building various small shopping malls, shopping sharing, community and corporate websites. Of course, you can also use it to make a simple blog.
Mao10CMS3.0.2 update content: 2014-12-30
Fixed multiple bugs reported by everyone and opened the wish function.
Installation method
Mao10CMS installation requirements environment PHP5.3+&Mysql5.0+
1. Set the Public folder, Application/Runtime folder, Application/Common/Conf/db.php to be writable.
2. Create a new empty database in mysql.
3. After uploading the program to the website space, visit http://your domain name/install.php to install it.
4. After the installation is complete, delete install.php and Application/Home/Controller/InstallController.class.php in the root directory of the website.
After successful installation, use the administrator account to log in to the website, click the gear icon in the upper right corner, and you will see the website management options, which is the backend in the traditional sense.
Pseudo-static configuration method
1. Configure the server:
[Apache] environment
-The mod_rewrite.so module is loaded in the httpd.conf configuration file
-AllowOverrideNone changes None to All
-Save the following content as a .htaccess file and place it in the same directory as the application entry file
RewriteEngineon
RewriteCond{REQUEST_FILENAME}!-d
RewriteCond{REQUEST_FILENAME}!-f
RewriteRule^(.*)$index.php/$1[QSA,PT,L]
[IIS]Environment
Configure web.Config and add a rewrite node in the middle:
2. Modify the Mao10CMS configuration file:
Open the Application/Common/Conf/config.php file in the program directory and change the value of URL_MODEL from 0 to 2.
Just 2 steps, pseudo-static setting is successful ~