changed my server, permalinks not working ok
-
i have a blog, and i was using permalink 301 redirection plugin to redirect my previous posts:
https://www.myblog.com/?p=20
to my new way:
https://www.myblog.com/google/stuff.html
/category/postname.html or something.i have moved today to my new server, and i get 404 error pages when trying to access my blog posts. the only way i can use permalinks is this way:
https://www.myblog.com/index.php/category/postname.html
or anything, it must have /index.php/ before the category and the postname. With that way, my blog works. But i dont want that ugly /index.php/ in the name of the posts.. can it be something related to .htacess? this is what it looks like now:# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
thanks if u can help me!
- The topic ‘changed my server, permalinks not working ok’ is closed to new replies.