FYI: wp 1.3, htaccess, permalinks, mode_rewrite
-
I’m on a shared hosting with mode_rewrite enabled, but I did not get the permalinks working correct (they got displayed, but they always made an 404.)
My solution is simple and now it works perfect.
I just made a permalink like “/artikel/%postname%/” then the htaccess code gets generated and I just remove one slash in the htaccess upload it again and it works.
htaccess code OLD:
RewriteEngine On
RewriteBase /wp1.3/ <— Here I remove the trailing slash
RewriteRule ^/feed/?([_0-9a-z-]+)?/?$ /wp1.3/index.php?feed=_$1 [QSA]
…
htaccess code NEW:
RewriteEngine On
RewriteBase /wp1.3 <— Now it works for me
RewriteRule ^/feed/?([_0-9a-z-]+)?/?$ /wp1.3/index.php?feed=_$1 [QSA]
…
Maybe it helps someone.
BTW: You guys make a great job on wordpress. ??
Thank you!!
Greetings
Rene Grassegger
- The topic ‘FYI: wp 1.3, htaccess, permalinks, mode_rewrite’ is closed to new replies.