Magento去除URL中的index.php
程序员文章站
2022-06-12 17:37:56
...
Magento去掉URL中的index.php
1.修改APACHE2中的配置文件。
2.启用apache2重写模块。
命令:#a2enmod rewrite
3.登录Magento后台系统,系统(System) => 配置(Configuration) => 网站(Web)=> 搜索引擎优化(Search Engines Optimization)=> 服务器重写(Use Web Server Rewrites),然后选择” yes” 即可(记得刷新Magento缓存).
4.修改.htaccess文件的配置
确保为:
############################################
## enable rewrites
Options +FollowSymLinks
RewriteEngine on
############################################
## you can put here your magento root folder
## path relative to web root
RewriteBase /
/etc/in
1.修改APACHE2中的配置文件。
DocumentRoot /home/magento/Options FollowSymLinks AllowOverride All 这里修改成All Options Indexes FollowSymLinks MultiViews AllowOverride All 这里修改成All Order allow,deny allow from all
2.启用apache2重写模块。
命令:#a2enmod rewrite
3.登录Magento后台系统,系统(System) => 配置(Configuration) => 网站(Web)=> 搜索引擎优化(Search Engines Optimization)=> 服务器重写(Use Web Server Rewrites),然后选择” yes” 即可(记得刷新Magento缓存).
4.修改.htaccess文件的配置
确保为:
############################################
## enable rewrites
Options +FollowSymLinks
RewriteEngine on
############################################
## you can put here your magento root folder
## path relative to web root
RewriteBase /
/etc/in
相关文章
相关视频
推荐阅读
-
一个php文件中的undefined index如何去除
-
帮我看下这个URL中的#代表什么?
-
php获得url参数中具有&的值的方法
-
$_SERVER的有关问题,小弟我说为什么一直url重写失败,去不掉index.php
-
CI 框架去掉url 中index.php的方法,ciindex.php
-
怎么不让smarty对url中的“&”转成“&”
-
怎么从编码过的url中通过get获取参数
-
php进行支付宝开发中return_url和notify_url的区别分析,支付宝notifyurl
-
thinkphp隐藏中url的index.php,thinkphpindex.php_PHP教程
-
php5.3以上版本中快速url重写的方法