我刚安装了Wordpress 3.5来管理多个域,只需一次安装(多站点:http://codex.wordpress.org/Create_A_Network)
在安装结束时,Wordpress向我显示了.htaccess
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^wp-admin$ wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^(wp-(content|admin|includes).*) E:\example.com\www/$1 [L]
RewriteRule ^(.*\.php)$ E:\example.com\www/$1 [L]
RewriteRule . index.php [L]
我没有使用Apache作为Web服务器,我在IIS上使用ISAPI过滤器。
如何为ISAPI转换上述代码?
(我会将这些说明放在名为 httpd.ini 的ISAPI文件中)
提前谢谢