1.独享虚拟主机经济版 如何设置伪静态
2.上传了.htaccess 只是能访问主页别的都打不开,实际想要的是隐藏这个连接中的
index.php (http://test.fxzy.cn/index.php/Article/PID/11)这个是没有问题的,但现实是
http://test.fxzy.cn/Article/PID/11,他是去掉了index.php,等于我的这个伪静态无效。
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
3.这个伪静态在别的服务器是可以用的
http://test.fxzy.cn/Article/PID/11 =
http://test.fxzy.cn/index.php/Article/PID/11
我要的效果