我正在尝试从重写的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中启用。