Info
- 2 posts
- 2 voices
- Started 2 years ago by mujtaba
- Latest reply from Taeo
- This topic is not resolved
Permalinks In Windows IIS
-
- Posted 2 years ago #
hi fellows,
iam running this blog http://www.embtrans.com , my hosting is running on Windows IIS and it doesnt allow mod_rewrite functionality.
i have managed to configure the pretty permalinks for WordPress using custom 404. here is its code
<?php$qs = $_SERVER['QUERY_STRING'];
$_SERVER['REQUEST_URI'] = substr($qs, strpos($qs, ':80')+3);
$_SERVER['PATH_INFO'] = $_SERVER['REQUEST_URI'];
include('index.php');
?>
i would like to know if there is some custom 404 code for bbpress on Windows IIS to make pretty permalinks work.
thanks in advance
-
- Posted 2 years ago #
Hi Mujtaba,
I don't know about a custom 404 but have you looked into the ISAPI ReWrite module? It provides mod_rewrite functionality for IIS. Works great.
-
You must log in to post.