简体   繁体   English

如何忽略.htacess重写规则到某些特定的文件夹

[英]How to omit .htacess rewrite rules to some particlar folder

I have written a .htaccess file for my drupal website to redirect any capitial letter on the url to small letter using the code below. 我已经为我的drupal网站编写了一个.htaccess文件,使用以下代码将url上的所有大写字母重定向为小写字母。

RewriteRule [A-Z] - [E=HASCAPS:TRUE,S=1]



  # Skip this entire section if no uppercase letters in requested URL
  RewriteRule ![A-Z] - [S=28]

  # Replace single occurance of CAP with cap, then process next Rule.
  RewriteRule ^([^A]*)A(.*)$ $1a$2
  RewriteRule ^([^B]*)B(.*)$ $1b$2
  RewriteRule ^([^C]*)C(.*)$ $1c$2
  RewriteRule ^([^D]*)D(.*)$ $1d$2
  RewriteRule ^([^E]*)E(.*)$ $1e$2
  RewriteRule ^([^F]*)F(.*)$ $1f$2
  RewriteRule ^([^G]*)G(.*)$ $1g$2
  RewriteRule ^([^H]*)H(.*)$ $1h$2
  RewriteRule ^([^I]*)I(.*)$ $1i$2
  RewriteRule ^([^J]*)J(.*)$ $1j$2
  RewriteRule ^([^K]*)K(.*)$ $1k$2
  RewriteRule ^([^L]*)L(.*)$ $1l$2
  RewriteRule ^([^M]*)M(.*)$ $1m$2
  RewriteRule ^([^N]*)N(.*)$ $1n$2
  RewriteRule ^([^O]*)O(.*)$ $1o$2
  RewriteRule ^([^P]*)P(.*)$ $1p$2
  RewriteRule ^([^Q]*)Q(.*)$ $1q$2
  RewriteRule ^([^R]*)R(.*)$ $1r$2
  RewriteRule ^([^S]*)S(.*)$ $1s$2
  RewriteRule ^([^T]*)T(.*)$ $1t$2
  RewriteRule ^([^U]*)U(.*)$ $1u$2
  RewriteRule ^([^V]*)V(.*)$ $1v$2
  RewriteRule ^([^W]*)W(.*)$ $1w$2
  RewriteRule ^([^X]*)X(.*)$ $1x$2
  RewriteRule ^([^Y]*)Y(.*)$ $1y$2
  RewriteRule ^([^Z]*)Z(.*)$ $1z$2

  # If there are any uppercase letters, restart at very first RewriteRule in file.
  RewriteRule [A-Z] - [N]

  RewriteCond %{ENV:HASCAPS} TRUE

I just write this code to rewrite the url on the browser. 我只是编写此代码来重写浏览器上的URL。 But after adding this code when i access any images using image which is having any capital letter in image src the capitial letter change to small letter. 但是在添加此代码后,当我使用image src中具有任何大写字母的图像访问任何图像时,大写字母变为小写字母。

for example when in access <img src="A.jpeg" /> it become <img src='a.jpeg' /> . 例如,在访问<img src="A.jpeg" />它变成<img src='a.jpeg' /> But the image stored on the server with A.jpeg, so i cannot access this image. 但是图像与A.jpeg存储在服务器上,所以我无法访问此图像。 How can i resolve this issue without renaming the image but still i need all my browser link in small letter event if user enter capital letter. 如何在不重命名图像的情况下解决此问题,但是如果用户输入大写字母,我仍然需要小写字母事件中的所有浏览器链接。

You can add a condition which ignores some file types, this might be easier in your case: 您可以添加忽略某些文件类型的条件,这种情况在您的情况下可能会更容易:

RewriteCond %{REQUEST_FILENAME} !\.(jpg|jpeg|gif|png)$

You can also add more filetypes by adding them in the () seperated by a pipe | 您还可以通过将它们添加到由竖线分隔的()来添加更多文件类型|

Edit: 编辑:

Additionally you can catch all file types using the -f keyword: 另外,您可以使用-f关键字捕获所有文件类型:

RewriteCond %{REQUEST_FILENAME} !-f

or an entire directory (folder) using -d : 或使用-d的整个目录(文件夹):

RewriteCond %{REQUEST_FILENAME} !-d

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM