Pretty URLs on Network Solution Hosting

Permalink
I'm trying to setup a site on Network Solutions. It works without the pretty URLs, but I get an error when I enable them.

After talking with NS, they said I needed to update my php.ini file in the cgi-bin directory and they sent me some settings to put into it.

Any suggestions on what settings are needed to make this work?

1 Attachment

SkyBlueSofa
 
gewald replied on at Permalink Reply
gewald
For siteground hosting this was proposed...

cgi.fix_pathinfo = 0

as the only thing to add to the php.ini file.

I'm trying to get this to work on Network Solutions too and not having any luck.

I've also modified the .htaccess file to include:

# Set the default handler.
DirectoryIndex index.php
DirectoryIndex index.htm
# -- concrete5 urls start --
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule ^(.*)$ /index.php/$1 [QSA,L]
</IfModule>
# -- concrete5 urls end --


as that helped on siteground and godaddy per another posting, but still getting no input file selected when I go beyond the home page.

Adding index.php after the domain makes it work, and then I can surf among the pages, but not back to the home page.

Garrett