Changeset 2957
- Timestamp:
- 07/03/2008 02:41:03 AM (5 months ago)
- Files:
-
- 1 modified
-
branches/website/.htaccess (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/website/.htaccess
r2934 r2957 2 2 RewriteEngine on 3 3 # Redirect to Trac 4 RewriteRule ^trac(/ ?.*)http://trac.kohanaphp.com$1 [R=301,L]4 RewriteRule ^trac(/.*)?$ http://trac.kohanaphp.com$1 [R=301,L] 5 5 # Redirect to SVN 6 RewriteRule ^svn(/ ?.*)http://svn.kohanaphp.com$1 [R=301,L]6 RewriteRule ^svn(/.*)?$ http://svn.kohanaphp.com$1 [R=301,L] 7 7 # Redirect to forum 8 RewriteRule ^forums (/?.*)http://forum.kohanaphp.com$1 [R=301,L]8 RewriteRule ^forums?(/.*)?$ http://forum.kohanaphp.com$1 [R=301,L] 9 9 # Redirect to doc 10 RewriteRule ^user_guide(/ ?.*)http://doc.kohanaphp.com$1 [R=301,L]10 RewriteRule ^user_guide(/.*)?$ http://doc.kohanaphp.com$1 [R=301,L] 11 11 12 12 # Installation directory … … 25 25 26 26 # Rewrite all other URLs to index.php/URL 27 RewriteRule ^(.*)$ index.php/$1[PT,L]27 RewriteRule .* index.php/$0 [PT,L]
