.htaccess文件无法在localhost XAMPP上运行

时间:2014-12-26 13:28:09

标签: php apache .htaccess

我使用XAMPP和.htaccess文件在localhost上有PHP项目:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /locations/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /test.php [L]
</IfModule>

但这不起作用,我只得到错误404.在httpd.conf文件中,我已取消注释这一行:

# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
#   Options FileInfo AuthConfig Limit
#
AllowOverride All

我使用的是Windows 8.1。我能做些什么才能让它发挥作用呢?

2 个答案:

答案 0 :(得分:7)

您可以在root .htaccess中使用此规则:

RewriteEngine On
RewriteBase /

RewriteRule ^locations(/.*)?$ test.php [L,NC]

答案 1 :(得分:2)

使用XAMPP,您将在以下位置找到该文件:

{xampp_dir} /apache/conf/httpd.conf

搜索以下字符串:

LoadModule rewrite_module modules / mod_rewrite.so

并取消注释(删除'#'符号)。 现在搜索另一个字符串AllowOverride None并将其替换为AllowOverride All