|
不少都是用试用空间转的免费吧. .htaccess去广告肯定用了
把下面的添加到.htaccess,装WP没问题了(测试过),装其它不知道,但原理应该一样的- LayoutIgnoreURI *.php
- LayoutIgnoreURI *.cgi
- LayoutIgnoreURI *.htm
- LayoutIgnoreURI *.html
- <Limit POST>
- order allow,deny
- allow from all
- </Limit>
- <IfModule mod_rewrite.c>
- RewriteEngine On
- RewriteBase /
- RewriteCond %{REQUEST_FILENAME} !-f
- RewriteCond %{REQUEST_FILENAME} !-d
- RewriteRule . /index.php [L]
- </IfModule>
复制代码 |
|