4

我需要 EasyPHP 和 .htaccess 方面的帮助。

.htaccess 文件不起作用,我认为这是因为我没有使用 EasyPHP 进行设置。

我的 EasyPHP 版本是5.3.8.1

也许有人知道如何解决这个问题?

.htaccess 文件:

Options +FollowSymlinks

RewriteEngine on

RewriteRule ^get/([^/]+) /func/get.php?link=$1 [NC]

4

2 回答 2

8

EasyPHP 中默认安装的 Apache 没有激活使用 .htaccess 文件修改文件夹中的服务器配置的选项。

您必须告诉 Apache 可以使用 .htaccess 文件更改哪些配置,以及在哪个文件夹中。要在主 Web 服务器上启用所有配置更改,您应该编辑http.conf(在 Apache/conf 文件夹中),并查找:

<Directory "${path}/www">
    #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks

    #
    # 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 None

    #
    # Controls who can get stuff from this server.
    #
    Order allow,deny
    Allow from all

</Directory>

和改变

    AllowOverride None

    AllowOverride All

为了更好地对其进行微调,请阅读有关AllowOverride的文档: http ://httpd.apache.org/docs/2.2/mod/core.html#allowoverride

另外,检查 http.conf 是否激活了 mod_rewrite,查找:

#LoadModule rewrite_module modules/mod_rewrite.so

并删除前导的“#”

LoadModule rewrite_module modules/mod_rewrite.so
于 2012-09-10T10:56:31.673 回答
1

在本地网站上工作时,我通过将网站路径(使用 .htaccess)添加为虚拟主机来解决此问题。Easyphp 为此提供了一个模块:'Virtual Hosts Manager'。这将自动处理httpd.conf

于 2013-07-03T23:48:47.720 回答