无法通过URL重写获取值

时间:2019-04-02 04:32:09

标签: php .htaccess

我正在尝试从重写的URL中获取一些值:

localhost/POO/Project/potato/cheese

我期望得到的结果(转储$_GET变量)

array(1) { ["url"]=> "potato/cheese" }

我现在要得到什么

array(1) { ["url"]=> string(0) "" }

我正在Windows 10上使用XAMPP

这是我的.htaccess文件:

    <IfModule mod_rewrite.c>
        <IfModule mod_negotiation.c>
            Options -MultiViews -Indexes
        </IfModule>

        RewriteEngine On

        # Handle Authorization Header
        RewriteCond %{HTTP:Authorization} .
        RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

        # Redirect Trailing Slashes If Not A Folder...
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_URI} (.+)/$
        RewriteRule ^ %1 [L,R=301]

        # Handle Front Controller...
        RewriteCond %{REQUEST_FILENAME} !-d
        RewriteCond %{REQUEST_FILENAME} !-f
        RewriteRule ^ index.php?url=$1 [L]
    </IfModule>

mod_rewrite已在我的PHP中启用。

0 个答案:

没有答案