嗨,我试图通过网站开发 MVC 模式,从一开始我需要获取 url 我试过这样
echo $url= $_GET['url'];
echo $url;
如果我使用这样的网址http://localhost/autolink/index/sdsad 它想显示“index/sdsad”但它没有显示任何内容,这有什么问题?可能是版本问题?因为在另一台机器上使用它正在工作..
这是我当前的 .htaccess:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]