Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add a note to Option A config (verify that mod_rewrite is activated)

...

Place the following in your .conf or .htaccess

Note

NOTE: Make sure mod_rewrite is activated in your httpd.conf. Example: LoadModule rewrite_module libexec/apache2/mod_rewrite.so

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

...