Questions tagged [case-insensitive]

16 questions
19
votes
1 answer

Is the hostname part of HTTP(S) URLs truly case-insensitive?

Is it safe to use http(s)://CompanyName.com/xyz as URL (e.g. for branding purposes) without any changes to the service-side configs? I know that DNS is case-insensitive, but could there still be side-effects? I am thinking of e.g. various parts of…
Nils Toedtmann
  • 3,572
  • 5
  • 30
  • 36
15
votes
6 answers

Linux: Case-INSENSITIVE Filesystem

What methods are there to make the Linux filesystem case-INSENSITIVE ? I have asp.net applications developed on Windows, but there are always issues with capitalization/spelling on mono when putting it on Linux. One way is to mount a localhost SMB…
Quandary
  • 1,044
6
votes
2 answers

Using ASP.NET MVC3, how can I have IIS not redirect 302 on case-sensitive routing?

Using ASP.NET MVC3, how can I have IIS not redirect 302 on case-sensitive routing? For example, I create an application folder under my site called "Admin" in IIS. The javascript (there are hundreds of files, no trivial change, and then when new…
6
votes
2 answers

Case sensitive folder names in MAMP

I'm not sure what site this question should be on, please feel free to move as necessary. I am working on a project in PHP where I need to differentiate between the folders 'a' and 'A'. When I run the script:
4
votes
3 answers

Forcing rsync to convert file names to lower case

We are using rsync to transfer some (millions) files from a Windows (NTFS/CYGWIN) server to a Linux (RHEL) server. We would like to force all file and directory names on the Linux box to be lower case. Is there a way to make rsync automagically…
SvrGuy
  • 1,002
4
votes
1 answer

Case insensitive bash auto-complete

Is there a way to make the file/dir auto-complete in bash case insensitive? For example I would like to write: /opt/ibm/whatever/test [TAB] And bash will auto-complete it to: /opt/IBM/Whatever/TESTfile Or at least only the last part of test to…
m_vitaly
  • 139
4
votes
1 answer

Apache: Redirecting with a case-insensitive path?

i have the following redirect: RedirectPermanent /SCJ https://fin-iq.com but it does not work for /scj, /sCj, etc. is there a way to make this case insensitive? i tried adding [NC,L] but the page crashed. thanks!
Garrett
  • 203
4
votes
1 answer

Case insensitivity for Cyrillic characters in Apache .htaccess RegEx does not work

Consider the following RewriteRules: RewriteEngline On RewriteRule ^services$ services.php RewriteRule ^новости$ news.php What they achieve is that www.example.com/services loads the content of services.php and www.example.com/новости loads the…
2
votes
2 answers

Mysql case insensitive table names

I had two database, one on windows server, and one on linux server, I moved the database to the linux server, but I faced wit a problem, On windows when a made a selection foe example SELECT * FROM tabledata Worked fine. but linux it's not…
Mokus
  • 422
  • 1
  • 11
  • 21
1
vote
1 answer

Moving case sensitive Linux files via Windows

the company I work for is currently trying to move a Magento installation from one server to another - however, the product images are saved in folders alphabetically indexed folders - but with an added twist, some of the letters are the same but…
sunwukung
  • 169
1
vote
0 answers

GCloud SDK `--filter` option appears to be case SEnsitive, docs say opposite: what am I missing?

First, my gcloud --vesion output: Google Cloud SDK 425.0.0 bq 2.0.89 core 2023.03.31 gcloud-crc32c 1.0.0 gsutil 5.21 Next, a GCloud command line that is doing case sensitive filtering: gcloud compute images list --format="table(name,description)"…
CrashNeb
  • 113
0
votes
1 answer

mod_speling Case Insensitive URLs not working

I have a ServerPilot server, running on Ubuntu 16.04.3 On it is an app that is a Wordpress website, but has other non-wordpress directories. In these directories is what I am concerned about. I have verified that mod_speling is indeed enabled on…
Kevin
  • 133
  • 1
  • 2
  • 14
0
votes
1 answer

How serve files in folder with case insensitive on linux with nginx

I'm having a little problem. I need serve files with case insensitive for a folder, i use nginx: Original: https://example.com/media/catalog/product/b/t/bt2501_brandy.jpg https://example.com/media/catalog/product/p/r/PR3027GUN_1.JPG This picture…
0
votes
1 answer

Is a case-insentitive URL under RH7 with Apache possible?

UPDATED ON 23-08-2017, see section below I want make URLs under RedHat 7 case-insentitive just before the Apache access to the declared directory. I tried with mod_rewrite and mod_speling. No one of them works. I know that Linux is a case-sensitive…
0
votes
1 answer

IIS Case insensitive Virtual Directory(App) issue

I have an app in IIS whose url is "http://localhost/MAIN", please note the uppercase virtual directory. When I try to access this url with a lower case app/virtual directory name, like "http://localhost/main" then the app turns the url into…
Numan
  • 111
  • 1
  • 3
1
2