Mobile app version of vmapp.org
Login or Join
Gloria169

: It is possible -- but you need to tell at least which web server do you use. For Apache this can be achieved with the following rule (using mod_rewrite): RewriteEngine On RewriteRule ^content/(.+)$

@Gloria169

It is possible -- but you need to tell at least which web server do you use.

For Apache this can be achieved with the following rule (using mod_rewrite):

RewriteEngine On
RewriteRule ^content/(.+)$ / [R=301,NC,L]


If you are using Microsoft IIS7.x then it is also possible with the help of URL Rewrite Module (you may need to download and install it separately -- depends which IIS version you have):

<rule name="redirect /content/" stopProcessing="true">
<match url="^content/(.+)$" />
<action type="Redirect" url="/{R:1}" />
</rule>

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Gloria169

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme