Hi, I'm hoping this is quite a simple question for someone out there, but I'm hacing a real problem trying to search about it. I'm trying to set up a SVN server along with a LAMP server running Wordpress Multisite, but the rewrites for Wrodpress are causing me issues and I can't access the SVN URL. What exactly does this line do? RewriteRule ^/index\.php$ - [L] Code (markup): The dash "-" is in a few places amongst the WP rewrite rules but can't actually figure out what it does. If it helps any more, the actual section of rewrites that are causing me problems is this: RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} -f [OR] RewriteCond %{DOCUMENT_ROOT}%{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule ^/[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) /$1 [L] RewriteRule ^/[_0-9a-zA-Z-]+/(.*\.php)$ /$1 [L] RewriteRule . /index.php [L] Code (markup): (I had to modify the example WP gives you as I set this inside the httpd.conf file instead of .htaccess)