?>
<?php
_e( 'To make your installation more secure, you should also add:'
); ?>
</p>
<p class="configuration-rules-label"><label for="network-wpconfig-authentication"><?php
_e( 'Network configuration authentication keys'
); ?></label></p>
<textarea id="network-wpconfig-authentication" class="code" readonly="readonly" cols="100" rows="<?php
echo $num_keys_salts; ?>" aria-describedby="network-wpconfig-authentication-description"><?php
echo esc_textarea( $keys_salts_str ); ?></textarea>
<?php
} ?>
</li>
<?php
if ( iis7_supports_permalinks() ) :
// IIS doesn't support RewriteBase, all your RewriteBase are belong to us.
$iis_subdir_match =
ltrim( $base, '/'
) .
$subdir_match;
$iis_rewrite_base =
ltrim( $base, '/'
) .
$rewrite_base;
$iis_subdir_replacement =
$subdomain_install ? '' : '{R:1}';
$web_config_file = '<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WordPress Rule 1" stopProcessing="true">
<match url="^index\.php$" ignoreCase="false" />
<action type="None" />
</rule>';