我刚刚安装了 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 服务器,我在带有 ISAPI 过滤器的 IIS 上。
如何将上述代码转换为 ISAPI?
(我会将这些说明放在名为httpd.ini的 ISAPI 文件中)
先感谢您