• joeynoh

    (@joeynoh)


    Hi, I’m currently hosting my wordpress blog on a server at Servage. I have enabled .htaccess and then changed my permalinks to appear like this:

    https://www.mysite.com/post-name

    WordPress changed my .htaccess file correctly and everythign seemed to be in order. But the links still dont work. I tried looking up a tutorial online or something that would point me in the right direction, but nothing seems to work.

    Right now my .htaccess file reads this:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    Can someone help me out?

    Thanks in advance,
    Joey

Viewing 5 replies - 1 through 5 (of 5 total)
  • Samuel B

    (@samboll)

    it says they run linux servers so that shouldn’t be a problem

    does your custom permalink setting look like this?

    /%postname%/

    Thread Starter joeynoh

    (@joeynoh)

    Yes, it does.

    Hi, all

    I experience the same problem.
    If someone has got a workaround, please share.

    Thx

    Ok, guys.

    It takes some time for enabling htaccess file on Servage. So you must wait for 3 hours in order mod_rewrite started to work.

    Cheers
    Lee

    I had this problem, with Servage you need to enable .htaccess in the Webserver tab. then settings. It might take up to 3 hours to work, after 3 hours if it doesn’t work just re-enter the permalink and or enter the code below into your .htaccess – remember if it’s in a folder and not your root directory, add the folder name to the code below. So if your wp blog is in a folder called frog, then name RewriteBase /frogs/ and RewriteRule . /frogs/index.php [L].

    Hope this helps.

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Mod_rewrite on a Servage server’ is closed to new replies.