You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							54 lines
						
					
					
						
							2.3 KiB
						
					
					
				
			
		
		
	
	
							54 lines
						
					
					
						
							2.3 KiB
						
					
					
				# Check that your Apache virtualhost have this settings:
 | 
						|
 | 
						|
#<Directory "/var/www/chamilo-classic">
 | 
						|
#  AllowOverride All
 | 
						|
#  Order allow,deny
 | 
						|
#  Allow from all
 | 
						|
#</Directory>
 | 
						|
 | 
						|
RewriteEngine on
 | 
						|
RewriteCond %{QUERY_STRING} ^id=(.*)$
 | 
						|
 | 
						|
# http://my.chamilo.net/certificates/?id=123 to http://my.chamilo.net/certificates/index.php?id=123
 | 
						|
RewriteRule ^certificates/$ certificates/index.php?id=%1 [L]
 | 
						|
 | 
						|
# http://my.chamilo.net/jdoe to http://my.chamilo.net/user.php?jdoe
 | 
						|
RewriteRule ^([^/.]+)/?$ user.php?$1 [L]
 | 
						|
 | 
						|
# Course redirection
 | 
						|
RewriteRule ^courses/([^/]+)/?$ main/course_home/course_home.php?cDir=$1 [QSA,L]
 | 
						|
RewriteRule ^courses/([^/]+)/index.php$ main/course_home/course_home.php?cDir=$1 [QSA,L]
 | 
						|
 | 
						|
# Rewrite everything in the scorm folder of a course to the download script
 | 
						|
RewriteRule ^courses/([^/]+)/scorm/(.*)$ main/document/download_scorm.php?doc_url=/$2&cDir=$1 [QSA,L]
 | 
						|
 | 
						|
# Rewrite everything in the document folder of a course to the download script
 | 
						|
# Except certificate resources, which might need to be accessible publicly to all
 | 
						|
RewriteRule ^courses/([^/]+)/document/certificates/(.*)$ app/courses/$1/document/certificates/$2 [QSA,L]
 | 
						|
RewriteRule ^courses/([^/]+)/document/(.*)$ main/document/download.php?doc_url=/$2&cDir=$1 [QSA,L]
 | 
						|
 | 
						|
# Rewrite everything in the work folder
 | 
						|
RewriteRule ^courses/([^/]+)/work/(.*)$ main/work/download.php?file=work/$2&cDir=$1 [QSA,L]
 | 
						|
 | 
						|
# Course upload files
 | 
						|
RewriteRule ^courses/([^/]+)/upload/(.*)$ app/courses/$1/upload/$2 [QSA,L]
 | 
						|
RewriteRule ^courses/([^/]+)/(.*)$ app/courses/$1/$2 [QSA,L]
 | 
						|
 | 
						|
RewriteRule ^courses/([^/]+)/course-pic85x85.png$ app/courses/$1/course-pic85x85.png [QSA,L]
 | 
						|
RewriteRule ^courses/([^/]+)/course-pic.png$ app/courses/$1/course-pic.png [QSA,L]
 | 
						|
 | 
						|
# About session
 | 
						|
RewriteRule ^session/(\d{1,})/about/?$ main/session/about.php?session_id=$1 [L]
 | 
						|
 | 
						|
# Issued individual badge friendly URL
 | 
						|
RewriteRule ^badge/(\d{1,}) main/badge/issued.php?issue=$1 [L]
 | 
						|
 | 
						|
# Issued badges friendly URL
 | 
						|
RewriteRule ^skill/(\d{1,})/user/(\d{1,}) main/badge/issued_all.php?skill=$1&user=$2 [L]
 | 
						|
# Support deprecated URL (avoid 404)
 | 
						|
RewriteRule ^badge/(\d{1,})/user/(\d{1,}) main/badge/issued_all.php?skill=$1&user=$2 [L]
 | 
						|
 | 
						|
# Support old URLs using the exercice (with a c) folder rather than exercise
 | 
						|
RewriteRule ^main/exercice/(.*)$ main/exercise/$1 [QSA,L]
 | 
						|
# Support old URLs using the newscorm folder rather than lp
 | 
						|
RewriteRule ^main/newscorm/(.*)$ main/lp/$1 [QSA,L]
 | 
						|
 |