skip to Main Content

Install codeigniter in parallels plesk server

The server runs 5.4.3 PHP with FastCGI For Cpanel, it works perfectly, however, it fail in plesk server. Here is the .htaccess used: RewriteEngine on DirectoryIndex index.php RewriteCond $1 !^(index.php|assets|upload|robots.txt) RewriteRule ^(.*)$ /my_folder/index.php/$1 [L] In config file: $config['base_url'] = '';…

VIEW QUESTION

.htaccess for moved forum and seo url

I've a problem with my .htaccess file. I recently moved the forum (IPB) that was in the root path in a subdirectory, so I wrote this .htaccess file Options +FollowSymLinks RewriteEngine on RewriteBase / RewriteRule ^view/([0-9]+)/?$ index.php?view=$1 [NC,L] RewriteCond %{HTTP_HOST}…

VIEW QUESTION
Back To Top
Search