I’m working on a blog using WordPress and I can’t figure out what the .htaccess file it creates is doing.
Here is the contents of the file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /welg/
RewriteRule ^index.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /welg/index.php [L]
</IfModule>
# END WordPress
Does anyone who understands this have the time to explain each line to me? Any help will be greatly appreciated.
1 comment
Comments are closed.