There are two ways to access ZenTao. One is GET, and the access address is /?m=xx&f=xx. The other one is static access, and its access address is /usr-login.html. The URL address is more concise than GET. In the following part, we introduce how to configure static access for ZenTao.
1. Configure Apache
1.1 Load the Module rewrite.Find the configuration files of Apache. It is usually saved in the directory of conf/httpd.conf. Check whether the rewrite module is loaded. If not, open it and then restart Apache server.
1.2 Check the override option in .htaccess.
Open the configuration file of Apache and check AllowOverride. If it is None, then change it to All (There may be multiple options of Allow Override. Choose a directory that is relevant to ZenTao or replace all).
2. Configure ZenTao
Open config/my.php and change RequestType into PATH_INFO.
2 $config->installed= true; // whether it is installed;
3 $config->debug= true; // whether debug is open. If it is not working, set it as true
4 $config->requestType= 'PATH_INFO'; // how to obtain the information required currently. Optional values: PATH_INFO|GET.
3. FAQ
3.1 iis is not configured in ZenTao. Theoretically, it should also support static access, though it might be very complicated. Anyone who has configured it successfully, please let me know how.3.2 If ZenTao doesn’t work well after configuring the static access, you can change it to GET, the most common way to access.