编程语言
首页 > 编程语言> > php-Apache:如何重写没有文件扩展名的URL并忽略大小写?

php-Apache:如何重写没有文件扩展名的URL并忽略大小写?

作者:互联网

我正在使用Apache 2.2.22和PHP 5.3.10运行Ubuntu 12.04.我希望用户能够在我的网站上请求页面,而不必键入’.php’扩展名,也不必担心大小写敏感.例如,像这样的网址…

http://www.site.com/test/phpinfo
http://www.site.com/test/PhPiNfO

…都应导致:

http://www.site.com/test/phpinfo.php

我从不区分大小写开始,遵循this question中接受的答案.这就是我的“ / etc / apache2 / sites-available / default”文件的样子……

<VirtualHost *:80>
        ServerAdmin webmaster@localhost

        DocumentRoot /var/www

        RewriteMap lc int:tolower

        <Directory />
                Options FollowSymLinks
                AllowOverride All
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
        </Directory>

        <Directory /var/www/test>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
        </Directory>

        ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
        <Directory "/usr/lib/cgi-bin">
                AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
                Order allow,deny
                Allow from all
        </Directory>

        ErrorLog ${APACHE_LOG_DIR}/error.log

        # Possible values include: debug, info, notice, warn, error, crit,
        # alert, emerg.
        LogLevel warn

        CustomLog ${APACHE_LOG_DIR}/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>
</VirtualHost>

…这是我的.htaccess文件:

RewriteEngine On
RewriteRule ^([a-z]+)/([a-z\-]+)$/${lc:$1}/${lc:$2}.php [L,NC]

文件扩展名部分正在运行,但是由于某些原因,区分大小写仍在执行.我的Apache错误日志充满了这样的行:

[Sat Jan 05 23:10:41 2013] [error] [client 192.168.1.9] File does not exist: /var/www/test/phpinfO

有任何想法我在这里做错了吗?

编辑:经过几个小时的试验,我看到了最奇怪的行为!我以为可能是我的.htaccess文件只是被忽略了,所以我充满了胡言乱语.这产生了预期的内部服务器错误.然后我在.htaccess文件中尝试了这两行…

RewriteEngine On
RewriteRule ^/(.*)$/${lc:$1}

…并尝试访问test / phpinfO.php失败.然后,我删除了.htaccess文件,并将这两行直接放入“ / etc / apache2 / sites-available / default”文件中,然后重新启动Apache.由于某些莫名其妙的原因,我想要的行为现在可以正常工作!我不可能知道怎么做,因为我的唯一规则是不将’.php’附加到URL上!

这听起来可能很奇怪,但是几乎感觉到我的更改正在以某种延迟的方式生效.我尝试了其他一些无法立即使用的测试,但是似乎在以后不应该使用时可以使用.我一直在测试,并希望我的当前设置能够在不做任何更改的情况下中断.无论如何,我绝对感到困惑.

希望有人能对此有所了解,然后再将我的大脑撕开并用大铁锤砸碎.

解决方法:

我终于想通了.好吧,至少有一部分.事实证明,“ MultiViews”选项负责解析不带“ .php”扩展名的文件.结合我的“ / etc / apache2 / sites-available / default”文件中的这两行,给出了我想要的行为:

RewriteEngine On
RewriteRule ^/(.*)$/${lc:$1}

不幸的是,我无法确定为什么具有上述规则的.htaccess文件会被忽略,而在出现乱码时却不能被忽略.

编辑:好的,我弄清楚了为什么.htaccess文件不起作用.它正在被读取,但是第二条规则没有被匹配.根据Apache documentation,这就是原因:

The removed prefix always ends with a slash, meaning the matching
occurs against a string which never has a leading slash. Therefore, a
Pattern with ^/ never matches in per-directory context.

结果,我将.htaccess文件更改为具有此文件…

RewriteEngine On
RewriteRule ^(.*)$${lc:$1}

…终于可以了!

标签:apache,mod-rewrite,ignore-case,file-extension,php
来源: https://codeday.me/bug/20191031/1975690.html