苹果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
|