\
RewriteEngine on
RewriteBase /codeangular/
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
\
* For Nginx place following code in your conf file:
location / {
try_files $uri $uri/ /index.php?$args;
if ($request_uri ~ "^/index\.php/") {
rewrite ^/index.php/(.*) /$1 redirect;
}
}
* CAB-JS is available for free (under the GNU GENERAL PUBLIC LICENSE Version 3) * Please respect each component license independently