1.首先下载dokuwiki安装包
2.将安装包传输并解压到apache项目目录中
rz
tar -zxvf dokuwiki-c5525093cf2c4f47e2e5d2439fe13964.tgz
此时目录下面就会新建一个名为dokuwiki的文件夹,里面包含了相关的文件。
3.进行域名解析
解析地址为你的域名服务器
4.配置Apache服务器
<VirtualHost *:80>
DocumentRoot /www/web/dokuwiki/public_html
ServerName code.aibo.cn
php_admin_value open_basedir /www/web/dokuwiki:/tmp
<IfModule mod_deflate.c>
DeflateCompressionLevel 7
AddOutputFilterByType DEFLATE text/html text/plain text/xml application/x-httpd-php
AddOutputFilter DEFLATE css js html htm gif jpg png bmp php
</IfModule>
</VirtualHost>
<Directory /www/web/dokuwiki>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
网友评论