Hi,
Does anyone know what means the line ?
RewriteRule ^index\.php$ - [L]
taken from my .HTACCESS file below :
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I know the line RewriteRule . /index.php [L] is inserted by default by WordPress. But I don't find what means the line RewriteRule ^index\.php$ - [L]