thetechgenius
09-17-2014, 09:47 PM
I am trying to convert this (Unix) htaccess code to (Windows) web.config code, could anyone give me a hand with this?
I have tried Online Converters, but it seems the converters don't give me the entire code.
Here is the .htaccess that I need to get converted to web.config.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([0-9]+)$ showthread.php?t=$1 [NC,QSA,L]
</IfModule>
I have tried Online Converters, but it seems the converters don't give me the entire code.
Here is the .htaccess that I need to get converted to web.config.
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([0-9]+)$ showthread.php?t=$1 [NC,QSA,L]
</IfModule>