站长资源变现入口 全国楼凤小姐姐 招商联系客服 招商联系客服 招商联系客服 招商联系客服

苹果CMSV10伪静态方法详解

[复制链接]
查看160 | 回复0 | 2024-8-15 13:26:10 | 显示全部楼层 |阅读模式

苹果CMSV10伪静态后只能访问首页,打开分类404或者直接跳转到首页。

apache伪静态方法<IfModule mod_rewrite.c>Options  FollowSymlinks -MultiviewsRewriteEngine onRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]</IfModule>

在.htaccess文件里,把问号去掉即可。

nginx伪静态方法

伪静态规则直接使用下列代码

location / {if (!-e $request_filename) {rewrite ^/index.php(.*)$ /index.php?s=$1 last;rewrite ^/admin.php(.*)$ /admin.php?s=$1 last;rewrite ^/api.php(.*)$ /api.php?s=$1 last;rewrite ^(.*)$ /index.php?s=$1 last;break;}}

然后去影视后台开启伪静态和路由规则就行

2.搜索的时候怎么把地址后面的杠—————-去掉?

类似:http://xxxxx.com/vodsearch—————-.html

解决方法:

路由规则把

vodsearch/<wd?>-<actor?>-<area?>-<by?>-<class?>-<director?>-<lang?>-<letter?>-<level?>-<order?>-<page?>-<state?>-<tag?>-<year?>   => vod/search

改成

vodsearch/   => vod/search

回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则