gpt4 book ai didi

php - .htaccess 允许图像直接显示

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:38:13 25 4
gpt4 key购买 nike

我有很多文件,包括图像、php 和 js 脚本和子文件夹。我需要使用 .htaccess 为任何 uri 重定向到 index.php。
例如:

www.example.com/test should be redirect to index.php

但图像不应重定向到 index.php。相反,它应该直接在浏览器中打印。
例如:

www.example.com/sample.jpg should display sample.jpg.

我在 .htaccess 代码中使用以下代码:

RewriteEngine On  
RewriteRule ^(.*)$ index.php

谁能解释一下如何显示图片?

最佳答案

在您的规则前添加条件以跳过图像/css/js 文件目录:

RewriteEngine On

RewriteRule !\.(?:jpe?g|gif|bmp|png|tiff|css|js)$ index.php [L,NC]

关于php - .htaccess 允许图像直接显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30868760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com