pkapollo/phongkhamapollo.com/master/application/controllers/.htaccess - Htaccess File

pkapollo/phongkhamapollo.com/master/application/controllers/.htaccess

Options +FollowSymlinks
# gọi Controller trong codeigniter luôn có file index.php
RewriteEngine on
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule ^(.+)//?$ index.php/$1 [L]
RewriteRule ^//(.+)?$ index.php/$1 [L]
RewriteRule ^(.+)//?$ index.php/$1 [L]
#RewriteRule ^(.+)/?$ index.php/$1 [L]

# gọi Controller trong codeigniter luôn  ko có file index.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d  
#RewriteRule ^/([^/]+)?(.*) /index.php/$1 [QSA]
RewriteRule .* index.php/$1 [PT,L]

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache