Replies: 0
I need help using Permalink Manager. It works perfectly fine in localhost, but when I move the site to liver server all links turn into 404 page.
.htacess files are exactly the same.
# BEGIN WordPress
# The directives (lines) between <code>BEGIN WordPress</code> and <code>END WordPress</code> are
# dynamically generated, and should only be modified via WordPress filters.
# Any changes to the directives between these markers will be overwritten.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /udl/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /udl/index.php [L]
</IfModule>
# END WordPress
Any help?