Pretty URLS -- BlueHost -- I Know Again
PermalinkI enabled Pretty URLS and added this code to my .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
# Use PHP5CGI as default
AddHandler fcgid-script .php
Have also tried moving the PHP5CGI script to the top.
I have also tried editing my php request file as follows:
public static function get() {
static $req;
if (!isset($req) || C5_ENVIRONMENT_ONLY) {
$path = false;
if (defined('SERVER_PATH_VARIABLE')) {
$path = Request::parsePathFromRequest(SERVER_PATH_VARIABLE);
}/*
if (!$path) {
$path = Request::parsePathFromRequest('ORIG_PATH_INFO');
}*/
if (!$path) {
$path = Request::parsePathFromRequest('REDIRECT_URL');
}
if (!$path) {
$path = Request::parsePathFromRequest('PATH_INFO');
}/*
if (!$path) {
$path = Request::parsePathFromRequest('REQUEST_URI');
}*/
if (!$path) {
$path = Request::parsePathFromRequest('SCRIPT_NAME');
}
$req = new Request($path);
}
I have refreshed the data base and cleared the cache until my fingers hurt.
The php.index is removed from the URLs, but going to page not found, a BlueHost page etc, etc. Only goes to the home page and I can get into the dashboard and that's it. Have tried and undid and tried again on 5 sites all tied to my primary as well as my primary.
Know there has got to be a way, I just have not been able to find it. Any help....please...would be greatly appreciated.

However, the internet is great for looking for "free" help from well-meaning others with similar problems. I did an internet search for you and this link looks pretty good, or you can search yourself: http://net.tutsplus.com/tutorials/other/using-htaccess-files-for-pr...
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$1 [L]
Also added the redirect script to the request.php file.
if (!$path) {
$path = Request::parsePathFromRequest('REDIRECT_URL');
}
Also added define('URL_REWRITING_ALL', true); to the config/site.php file.
However, the omission of index.php is sometimes inconsistent, on some pages absent all the time, on others sometimes, sometimes not, with the Home page being the most inconsistent.