dtj2ww9500 2016-12-14 11:06
浏览 32
已采纳

Htaccess索引文件,如果存在

I would need such a .htaccess file, which enables me direct access to some files by extension (images), and in any other case it checks if entryPoint2.php exists, if does, execute that file, if not, executes entryPont.php. This is what I made so far:

Options +FollowSymLinks
Options -Indexes

RewriteEngine On
RewriteCond %{REQUEST_URI} !(\.png|\.jpg|\.gif|\.jpeg|\.bmp|\.ico|\.flv|\.mpeg|\.mp4|\.mp3|\.swf)$
RewriteCond %{REQUEST_URI} !^/forum
RewriteCond %{REQUEST_URI} !^/assets/downloads
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{DOCUMENT_ROOT}/entryPoint2.php -f
RewriteRule ^(.*)$ entryPoint2.php [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ entryPoint.php [QSA]
RewriteRule ^robots\.txt$ http://www.example.com [R,NE,L]
RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST} [L,R=301]
<Files .htaccess>
Order Allow,Deny
Deny from All
</Files>

images works, but I get "forbidden" error, it looks for index.php

  • 写回答

1条回答 默认 最新

  • dongwei2610 2016-12-16 16:01
    关注

    Your requirement turns out to be less complex than I initially thought. What you need is a white list and a simple file check.

    This should do:

    RewriteEngine on
    RewriteRule \.(png|jpg|gif|jpeg|bmp|ico|flv|mpeg|mp4|mp3|swf)$ - [L]
    RewriteCond %{DOCUMENT_ROOT}/entryPoint2.php -f
    RewriteRule ^ entryPoint2.php [L]
    RewriteRule ^ entryPoint.php
    

    Line by line explanation:

    • Line 1 is self-explanatory.
    • Line 2 is an extension-based while list. It makes Apache serve files matching those extensions immediately, ignoring the rest of the .htaccess.
    • Line 3 checks the existence of entryPoint2.php. If, for instance, DOCUMENT_ROOT is /foo/bar, it checks if /foo/bar/entryPoint2.php exists.
    • Line 4 will serve entryPoint2.php if line 3 evaluates to true, ignoring the rest of the .htaccess.
    • Line 5 serves entryPoint.php for any other case.

    There you go.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 python的qt5界面
  • ¥15 无线电能传输系统MATLAB仿真问题
  • ¥50 如何用脚本实现输入法的热键设置
  • ¥20 我想使用一些网络协议或者部分协议也行,主要想实现类似于traceroute的一定步长内的路由拓扑功能
  • ¥30 深度学习,前后端连接
  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100