404 with permalinks
-
Heyho
After moving my site from one server to another everything works just fine except for permalinks which used to work on the old server.
Once I use any other setting than default, it gives me 404.Content of .htaccess:
`<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Options -Indexes##lines below by Hetzner
<FilesMatch “xmlrpc.php”>
Order Deny,Allow
Deny from all
</FilesMatch>
## lines above by Hetzner# 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 don’t really know why it’s posting those line twice.
- The topic ‘404 with permalinks’ is closed to new replies.