苹果CMSV10伪静态方法详解
苹果CMSV10伪静态后只能访问首页,打开分类404或者直接跳转到首页。apache伪静态方法<IfModule mod_rewrite.c>OptionsFollowSymlinks -MultiviewsRewriteEngine onRewriteCond %{REQUEST_FILENAME} !-dRewriteCond %{REQUEST_FILENAME} !-fRewriteRule ^(.*)$ index.php/$1 </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
页:
[1]