doudiandi6967 2013-10-31 17:03
浏览 42
已采纳

在dev env中使用某些网址上的prod环境

I am using excellent https://github.com/liip/LiipImagineBundle bundle for showing images. But when working in dev enviroment, generated urls become something like:

<img src="/app_dev.php/media/cache/60x60/somefile.jpg">

and when there are 20-30 images, my programs crawls. I also get lots of connection timeouts because app_dev.php goes thru entire FW.

Question: Can I somehow set Symfony to generate production URL for some parts, while still in dev? Ie. that LiipImagineBundle always generate production URL, no matter what enviroment is?

Or how can I change .htaccess to use

/media/cache/60x60/file.jpg

whenever there is

app_dev.php/media/cache/* 

found

  • 写回答

2条回答 默认 最新

  • drny60365 2013-10-31 17:10
    关注

    You can use this code in your DOCUMENT_ROOT/.htaccess file:

    RewriteEngine On
    
    RewriteRule ^app_dev\.php(/media/cache/.*)$ $1 [L,R=301,NC]
    

    Reference: Apache mod_rewrite Introduction

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 这个复选框什么作用?
  • ¥15 单通道放大电路的工作原理
  • ¥30 YOLO检测微调结果p为1
  • ¥20 求快手直播间榜单匿名采集ID用户名简单能学会的
  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决