zblog二级目录的规则依然需要放到跟目录下
在伪静态管理中心 点击创建.htaccess文件.
然后用ftp把那个文件下载下来(跟目录那个)
然后把中间的规则复制一份. 加上子目录,即可!
相当于把两个.htaccess文件合并成一个了 然后传到根目录.即可
内容如下:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] RewriteBase /appxiazai/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /appxiazai/index.php [L] </IfModule>
本文指的是 apache环境.如果是nginx环境的话
http://qingzhouquanzi.com/77.html