当前位置: 首页 > 工具软件 > ProcessMaker > 使用案例 >

processMaker

龚鸿雪
2023-12-01
 

第一步:配置xampp

//在httpd-vhosts.conf中添加下面配置

 

NameVirtualHost *:8081
<VirtualHost *:8081>
  ServerName "localhost:8081"
  DocumentRoot E:/eclipse/workspace/processmaker/workflow/public_html
  DirectoryIndex index.html index.php
  <Directory  "E:/eclipse/workspace/processmaker/workflow/public_html">
    AddDefaultCharset UTF-8

    AllowOverRide none
    Options FollowSymlinks
    Order allow,deny
    Allow from all

    RewriteEngine on
    RewriteRule ^.*/(.*)$ sysGeneric.php [NC,L]

    ExpiresActive On   
    ExpiresDefault "access plus 1 day"
    ExpiresByType image/gif "access plus 1 day"
    ExpiresByType image/png "access plus 1 day"
    ExpiresByType image/jpg "access plus 1 day"
    ExpiresByType text/css "access plus 1 day"
    ExpiresByType text/javascript "access plus 1 day"

    AddOutputFilterByType DEFLATE text/html       
       
  </Directory>
</VirtualHost>

 

第二步:源码安装processmaker

安装使用参考: http://wiki.processmaker.com/index.php/Main_Page

 类似资料:

相关阅读

相关文章

相关问答