如何在Apache服务器上配置易优CMS的伪静态规则以去掉URL上的index.php?

COS、CDN

在Apache服务器上配置易优CMS的伪静态规则以去掉URL上的index.php,可以按照以下步骤进行操作。这些步骤适用于不同的安装场景,包括根目录和二级目录的安装。

  1. 根目录安装

    • 确保根目录下的 .htaccess 文件存在,并包含以下伪静态规则:
      apache
       
      <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on # http跳转到https(如果需要) # RewriteCond %{HTTPS} !=on # RewriteRule ^(.*)$ https://%{SERVER_NAME}/$1 [R,L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L] </IfModule>
    • 保存 .htaccess 文件。
  2. 二级目录安装

    • 如果易优CMS安装在二级目录下,例如 /二级目录名/,则需要在该目录下的 .htaccess 文件中添加特定的伪静态规则:
      apache
       
      <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine on # http跳转到https(如果需要) # RewriteCond %{HTTPS} !=on # RewriteRule ^(.*)$ https://%{SERVER_NAME}/$1 [R,L] RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L] </IfModule>
    • 保存 .htaccess 文件。
  3. 如果伪静态规则不起作用

    • 检查URL重写模块:确保Apache的URL重写模块 mod_rewrite 已经开启。可以通过以下命令检查和启用:
      sh
       
      sudo a2enmod rewrite sudo systemctl restart apache2
    • 修改伪静态规则:如果上述规则不起作用,可以尝试修改 RewriteRule 的规则,例如:
      apache
       
      RewriteRule ^(.*)$ index.php?/$1 [QSA,PT,L]
      或者:
      apache
       
      RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
  4. 注意事项

    • 清除缓存:在管理后台清除缓存,确保伪静态规则生效。
    • 重启服务:重启Apache服务以使配置生效:
      sh
       
      sudo systemctl restart apache2
    • 测试:配置完成后,访问网站的各个页面,确保URL中的index.php已经成功去掉。

通过以上步骤,可以在Apache服务器上成功配置易优CMS的伪静态规则,去掉URL中的index.php,提升网站的美观度和用户体验。如果在操作过程中遇到任何问题,建议查阅Apache的官方文档或联系易优CMS的技术支持团队寻求帮助。

COS、CDN
热门