Joeynoh
Member
Posted 2 years ago #
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:
http://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
it says they run linux servers so that shouldn't be a problem
does your custom permalink setting look like this?
/%postname%/
Joeynoh
Member
Posted 2 years ago #
alibaloi
Member
Posted 2 years ago #
Hi, all
I experience the same problem.
If someone has got a workaround, please share.
Thx
alibaloi
Member
Posted 2 years ago #
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>