This forum has been moved here:
Helicon Tech Community Forum

  Active TopicsActive Topics  Display List of Forum MembersMemberlist  HelpHelp   RegisterRegister  LoginLogin
ISAPI_Rewrite 2.x
 Helicon Tech : ISAPI_Rewrite 2.x
Subject Topic: Rewrite Script for Wordpress Permalinks Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
chicks
Newbie
Newbie


Joined: 05 May 2011
Location: Netherlands
Online Status: Offline
Posts: 1
Posted: 05 May 2011 at 2:28am | IP Logged Quote chicks

For the people that use Wordpress. Here is the script to
get permalinks working.

Code:

[ISAPI_Rewrite]
RewriteEngine On
RewriteBase /
RewriteCond ${REQUEST_FILENAME} !-f
RewriteCond ${REQUEST_FILENAME} !-d
# For special Wordpress folders (e.g. theme, admin, etc.)
RewriteRule /wp-(.*) /wp-$1 [L]
# For all Wordpress pages
RewriteRule ^/$ /index.php [L]
RewriteRule /(.*) /index.php/$1 [L]


You can see the result of this script on:
Chicks
Back to Top View chicks's Profile Search for other posts by chicks
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot delete your posts in this forum
You cannot edit your posts in this forum
You cannot create polls in this forum
You cannot vote in polls in this forum