需要将这段指定到根目录下的wiki目录去:
rewrite ^/_media/(.*) /lib/exe/fetch.php?media=$1 last; rewrite ^/_detail/(.*) /lib/exe/detail.php?media=$1 last; rewrite ^/_export/([^/]+)/(.*) /doku.php?do=export_$1&id=$2 last; rewrite ^/(.*) /doku.php?id=$1 last;
增加到这个配置里去:
http { server { listen 80; server_name localhost; root /Server/data/html; index index.html index.htm index.php; location / { autoindex on; if (!-e $request_filename) { rewrite (.*) /?index.php/$1; } } #dokuwiki配置开始 location ~ /wiki/(data|conf|bin|inc)/ { deny all; } #dokuwiki配置结束 location ~ \.php$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location ~ /\.ht { deny all; } } }鼓捣了好几天了,还是没能解决...
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。