TPshop2.0首页无法打开商品

TPshop2.0根目录.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]
</IfModule>

修改后可以正常使用的:

<IfModule mod_rewrite.c>
  Options +FollowSymlinks -Multiviews
   RewriteEngine On

   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteCond %{REQUEST_FILENAME} !-f
   RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>

原因参考:http://blog.xiaoniba.com/18479.html

版权声明:
作者:xiaoniba
链接:https://blog.xiaoniba.com/2017/03/15/tpshop2-0%e9%a6%96%e9%a1%b5%e6%97%a0%e6%b3%95%e6%89%93%e5%bc%80%e5%95%86%e5%93%81/
来源:小泥吧的博客
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>