B2B2C商城
开发手册
开发教程
API接口
下单流程接口
用户中心接口
使用手册
统计管理
商品管理
模板管理
新手入门
多商家首页布局规则
第三方账号注册流程
商家中心
店铺管理
商品管理
账号管理
常见问题
其他
公众号接入
系统安装
支付相关
名片小程序
伪静态配置
Linux 下Apache开启伪静态的配置
1、打开Apache的配置文件httpd.conf
#LoadModule rewrite_module modules/mod_rewrite.so
把前面的 “#”去掉
2、把 AllowOverride None 改为 AllowOverride All
#
# 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
3,让Apache支持.htaccess
Options FollowSymLinks
AllowOverride None
修改为 copy
Options FollowSymLinks
AllowOverride All
重启Apache即可以生效
通过PHP提供的phpinfo()函数查看环境配置,通过Ctrl+F查找到“Loaded Modules”,其中列出了所有apache2handler已经开启的模块,如果里面包括“mod_rewrite”,则已经支持,不再需要继续设置。