apache httpd 中文路径 问题
本文解决的问题:
需要解决linux 下安装 httpd不支持中文路径的问题
补充:
1.如果你安装httpd的时候用的是yum安装,建议卸载后重新用源码安装的方法。因为这篇文中用的是源码安装的情况下
2.因为在解决问题过程中没有很好的记录整个过程,所以就把各个步骤用到的链接附上。
先卸载yum安装的httpd
https://www.cnblogs.com/chenduzizhong/p/7652726.html
再用源码安装,重装httpd
https://blog.csdn.net/qq_32347977/article/details/50780199
再安装支持中文的插件
https://www.cnblogs.com/oldking/p/6698144.html(参考)
https://www.cnblogs.com/blueskycc/p/5102193.html(参考)
https://www.cnblogs.com/alanleung/p/6772037.html(主要)
前两篇博客的下载连接无法使用了,仅作参考,第三篇可以下载
遇到问题
./configure不起作用:
1.Linux系统下指定应用安装目录时提示 ./configure报-bash: ./configure: No such file or directory
分析:./configure 需要在含有configure的目录下才能执行
https://blog.csdn.net/u010197393/article/details/83376029
2.gcc: 错误:unrecognized command line option ‘-Wc,-Wall’
解决方法:直接删除-Wc,Wall
3.启动:
在usr/local/apache/bin 目录下执行
apachectl start
4.重启:
在usr/local/apache/bin 目录下执行(目录根据自己的情况变动)
apachectl restart