source: trunk/www/htaccess.txt @ 4720

Revision 4720, 708 bytes checked in by mattlevine, 5 months ago (diff)

Merge remote-tracking branch 'remotes/origin/master'

  • Property svn:executable set to *
Line 
1# This is for rewriting urls "WITHOUT" siteIDs
2# To remove the Mura siteID directory and index.cfm from urls you must also set both siteIDInURLS and indexFileInURLs to 0 in your /config/setting.ini.cfm and reload Mura.
3  RewriteEngine On
4  RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
5  RewriteRule ^([a-zA-Z0-9/-]+)$ /index.cfm%{REQUEST_URI} [PT]
6
7# This is for rewriting urls "WITH" siteIDs
8# To remove the Mura siteID directory and index.cfm from urls you must also set siteIDInURLS to 1 and indexFileInURLs to 0 in your /config/setting.ini.cfm and reload Mura.
9# RewriteEngine On
10# RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
11# RewriteRule ^([a-zA-Z0-9-]{1,})/([a-zA-Z0-9/-]+)$ /$1/index.cfm/$2 [PT]
Note: See TracBrowser for help on using the repository browser.