This topic is locked
[SOLVED]

 url rewrite

12/10/2013 7:46:43 AM
ASPRunnerPro General questions
M
marcove author

Hi
someone could suggest to me how could adopt URL Rewrite functions for ASPRunner Pro application on IIS to update security of the sites?

Thank you
M

admin 12/10/2013

Check ISAPI_Rewrite - the URL rewrite module for IIS:

http://www.isapirewrite.com/
We use it for several projects including this forum and it works well.
Here is config file for this forum:

RewriteEngine On
RewriteBase /forums/
RewriteCond %{HTTP:User-Agent} (?:WebBandit|Bing|bingbot|bingbot/2.0) [NC]

RewriteRule .? - [F]
RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteRule (.*)$ index.php [L]
M
marcove author 12/13/2013

Thank You Sergey,
It's complex to apply this to a big application, could you suggest other solution to ghost the detailed urls provided by ASPRunner?
Thank You

M

admin 12/13/2013

This is a standard approach, there is no easier or more difficult way. Under Apache webs server people use url_rewrite and .htaccess, under IIS your only option is ISAPI_Rewrite with similar syntax. The only easier option is to hire someone to do this for you.

M
marcove author 12/13/2013

Thank You

M