易优eyoucms为何我访问的域名地址中间老带个index.php

COS、CDN

如果你访问的域名地址中间总是带有 index.php,这通常意味着服务器没有正确地配置URL重写规则来隐藏 index.php。这种现象可以通过启用伪静态URL设置来解决,让URL看起来更加简洁和友好。

如何设置伪静态以去除 index.php

对于不同的服务器环境,设置方法如下:

1. Apache 服务器

  1. 启用重写模块: 确保 Apache 的 mod_rewrite 模块已经被启用。

    • Ubuntu/Debian

      sh
       
      sudo a2enmod rewrite sudo systemctl restart apache2
    • CentOS/RHEL

      sh
       
      sudo systemctl enable mod_rewrite sudo systemctl restart httpd
  2. 编辑 .htaccess 文件: 在网站根目录下创建或编辑 .htaccess 文件,并添加以下内容:

    <IfModule mod_rewrite.c>     Options +FollowSymlinks -Multiviews     RewriteEngine On      # 如果请求的目标不是一个目录也不是一个文件,则重写到 index.php     RewriteCond %{REQUEST_FILENAME} !-d     RewriteCond %{REQUEST_FILENAME} !-f     RewriteRule ^(.*)$ index.php?s=/$1 [QSA,PT,L] </IfModule>
  3. 清除缓存: 如果你的网站有缓存机制,请确保清除缓存。

COS、CDN
热门