关于ThinkPHP在BAE上URL的rewrite问题

简介:

  在BAE上若想用ThinkPHP的那一套URL路由方式,必须在BAE上rewrite一下,之前我就直接用了不过是403错误,rewrite方式如下:

  把你在BAE上的文件checkout到本地,在根目录下的app.conf(没有可以手动创建一个),然后把下面的代码粘贴上保存即可:

handlers:
  - expire : .jpg modify 10 years
  - expire : .swf modify 10 years
  - expire : .png modify 10 years
  - expire : .gif modify 10 years
  - expire : .JPG modify 10 years
  - expire : .ico modify 10 years

  - url : (.*\.html)
    script : $1
  - url : (.*\.css)
    script : $1
  - url : (.*\.js)
    script : $1
  - url : (.*\.jpg)
    script : $1
  - url : (.*\.gif)
    script : $1
  - url : (.*\.jpeg)
    script : $1
  - url : (.*\.png)
    script : $1

  - url : (.*)\?(.*)
    script : index.php?$2
  - url : (.*)
    script : index.php?$1

相关文章
|
XML 数据可视化 安全
IIS中的URL Rewrite模块功能学习总结
IIS中的URL Rewrite模块功能学习总结
393 0
IIS中的URL Rewrite模块功能学习总结
|
6月前
|
应用服务中间件 Apache nginx
使用URL Rewrite实现网站伪静态
通过使用URL Rewrite规则,你可以在URL保持伪静态的外观的同时,实际上使用动态的URL。这对于提高SEO友好性和用户体验非常有用。具体的规则和配置可能因服务器和需求而有所不同。 买CN2云服务器,免备案服务器,高防服务器,就选蓝易云。百度搜索:蓝易云
88 0
|
Apache PHP Windows
去除thinkphp url中的index.php(web服务器是apache)
例如你的原路径是 http://localhost/yibuzhicheng/ index.php/Index/about.html 那么现在的地址是 http://localhost/yibuzhicheng/Index/about.html
194 0
|
Web App开发 .NET
|
Apache PHP 搜索推荐