博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Drupal Nginx伪静态设置方法
阅读量:5983 次
发布时间:2019-06-20

本文共 409 字,大约阅读时间需要 1 分钟。

location ~ ^.*/files\/styles\/.*$ {        access_log off;        expires 45d;        error_page 404 @drupal;}location @drupal {        if (!-e $request_filename) {        rewrite ^/(.*)$ /index.php?q=$1 last;        }}# Drupal Rewritelocation / {        root /path/to/drupal;        index index.php index.html;        if (!-e $request_filename) {                rewrite ^(.*)$ /index.php?q=$1 last;        }}

 

转载地址:http://paeox.baihongyu.com/

你可能感兴趣的文章
django之防止csrf跨站***
查看>>
applicationcontext.xml怎么分模块简化配置
查看>>
Django Admin
查看>>
负载均衡 (一) 工作模式以及工作原理
查看>>
Android 70道面试题汇总不再愁面试
查看>>
从ArrayList说起的JAVA复制与参数传递机制
查看>>
Servlet
查看>>
比较好的网站及工具
查看>>
Keychain
查看>>
Webview图片自适应
查看>>
使用 getopt() 进行命令行处理
查看>>
js去掉html标记,中正则表达式,去掉字符,截取字符
查看>>
使用Akka Http,ActiveMQ搭建一个邮件发送服务器
查看>>
kvm starting domain: cannot send monitor command
查看>>
Tomcat主配置文件Server.xml详解
查看>>
中考在即,您为孩子选择什么?--读<<招生全攻略>>有感
查看>>
深入剖析 HTML5
查看>>
Mysql mysql.server启动脚本详解 .
查看>>
网格(GridView)+图片(ImageView)+文字(TextView)
查看>>
jquery遇上Ajax
查看>>