3

在过去的几个小时里,我一直在尝试在我的 LAMP 机器中编写干净的 URL。

Apache 的 mod_rewrite 已启用,我正在尝试使用 .htaccess 文件将 URL GET 参数传递给我的 index.php 脚本,该脚本当时只是 _GET 的 var_dump。

我当前的 .htaccess 如下(尽管我已经尝试了很多变体,但在其他答案中没有成功)

RewriteEngine On

#Make sure it's not an actual file
RewriteCond %{REQUEST_FILENAME} !-f

#Make sure its not a directory
RewriteCond %{REQUEST_FILENAME} !-d 

#Rewrite the request to index.php
RewriteRule ^(.*)$ index.php?/get=$1 [L]

当我将浏览器指向 localhost/my_project/test 时,我得到的只是 404 错误:

未找到

在此服务器上找不到请求的 URL /my_project/test。

Apache/2.2.22 (Ubuntu) 服务器在 localhost 端口 80

显然我在这里遗漏了一些明显的东西,有什么帮助吗?

4

1 回答 1

3

2 件事要寻找:

  1. 确保 .htaccess 已启用
  2. 确保上面的代码在my_project目录中。

然后也添加RewriteBase行:

RewriteEngine On
RewriteBase /my_project/

#Make sure it's not an actual file
RewriteCond %{REQUEST_FILENAME} !-f
#Make sure its not a directory
RewriteCond %{REQUEST_FILENAME} !-d 
#Rewrite the request to index.php
RewriteRule ^(.*)$ index.php?get=$1 [L]
于 2013-10-06T17:43:50.543 回答