大写字母URL与cPanel?

时间:2017-02-27 10:41:23

标签: html .htaccess url cpanel

我的网站有这个链接,但是当我把你好转到HELLO时,找不到页面

www.mywebsite.com/hello

我搜索过很多关于大写字母网址的问题。答案基本相同,即设置.htaccess并设置RewriteMap httpd.conf。我的网站使用的是cPanel 62.0.15,我认为我不能访问httpd.conf。我没有在任何地方找到该文件。 有没有其他方法可以使大写字母URL工作?或者我在哪里可以找到cPanel中的httpd.conf文件?

我的.htaccess

Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{SCRIPT_FILENAME} !-d  
RewriteCond %{SCRIPT_FILENAME} !-f  
RewriteBase /

RewriteRule ^(.*)$ index.php?xparam=$1 [QSA,L]

</IfModule>

1 个答案:

答案 0 :(得分:0)

如果将NC添加为RewriteRule,则会使匹配大小写不敏感:

RewriteRule ^(.*)$ index.php?xparam=$1 [QSA,L,NC]

成为......

[1,3,4;1,4,4;1,5,2]

有关详情,请参阅https://httpd.apache.org/docs/current/rewrite/flags.html