gpt4 book ai didi

.htaccess - easyphp 和 .htaccess

转载 作者:行者123 更新时间:2023-12-01 10:08:30 27 4
gpt4 key购买 nike

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

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

我的 EasyPHP 版本是 5.3.8.1

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

.htaccess 文件:
Options +FollowSymlinksRewriteEngine onRewriteRule ^get/([^/]+) /func/get.php?link=$1 [NC]

最佳答案

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

关于.htaccess - easyphp 和 .htaccess,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8158770/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com