X1支持隐藏前台网址中的index.php文件名,前提是你的服务器要支持伪静态。
设置方法如下:
1、登陆后台,找到:系统参数配置——基础设置,找到“是否隐藏前台网址中的index.php文件名”,设置为:隐藏。
2、找到:网站菜单管理,修改菜单链接,把index.php去掉即可。
3、进入网站根目录,找到.htaccess文件,修改为:
<IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] # RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1] </IfModule>
4、清空缓存。
刷新前台,就可以看到效果了。