Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Here is an example of how you would set up the rewrite for a sub-directory installation. Notice that the RewriteRule specifies the subdirectories at the start, and redirects to that subdirectory in the rewrite. These subdirectories are also included in the rewrite exception for the webtop. If you have other exceptions you will need to update those as well.

Code Block
##### APACHE VERSION
RewriteEngine On
RewriteCond %{REQUEST_URI} !(/farcry|((subdirectory1|subdirectory2)/webtop|/flex2gateway|/flashservices)($|/)
RewriteRule ^/(subdirectory1|subdirectory2)([a-zA-Z0-9\/\-\%:\[\]\{\}\|\;\<\>\?\,\*\!\@\#\$\ \(\)\^_`~]*)$ /$1/index.cfm?furl=$2 [L,PT,QSA]

...