Another Post about pretty URL's' Help me please
Permalink 1 user found helpful
OK I am doing another website in C5 and I am running into some problems getting the Pretty URL's to work. I am using Go Daddy and installing to sub directory that is set up to be accessed directly by the domain name. I am on Linux and I have the setting checked in the dashboard and have the following rewrite rules in the .htaccess file
# -- concrete5 urls start --
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$1 [L]
</IfModule>
# -- concrete5 urls end --
I had to find this on the internet as the one that shows up in the dashboard would show the index page but when you clicked on a link it would output that there was no input file specified.
So with this I get pretty URL's except when i click on the home button on the page. When I use the home button I gethttp://mydomain.com/index.php?cID=1...
everything else is OK and there is no index.php?cID=. I hope someone can help me as this has taken a lot of time now and I have tried doing everything I can think of to get this worked out.
One more thing if i go to mydomain.com it works and shows only as mydomian.com it is only after i leave and go back using the link.
# -- concrete5 urls start --
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$1 [L]
</IfModule>
# -- concrete5 urls end --
I had to find this on the internet as the one that shows up in the dashboard would show the index page but when you clicked on a link it would output that there was no input file specified.
So with this I get pretty URL's except when i click on the home button on the page. When I use the home button I gethttp://mydomain.com/index.php?cID=1...
everything else is OK and there is no index.php?cID=. I hope someone can help me as this has taken a lot of time now and I have tried doing everything I can think of to get this worked out.
One more thing if i go to mydomain.com it works and shows only as mydomian.com it is only after i leave and go back using the link.
Check out this one:
http://www.concrete5.org/documentation/how-tos/developers/concrete5...
Search for "No input file specified." and I think the answer is there.
Antti / Mainio
http://www.concrete5.org/documentation/how-tos/developers/concrete5...
Search for "No input file specified." and I think the answer is there.
Antti / Mainio
Switching from PHP 5.x FastCGI to PHP 5.x worked for me. I had one heck of a time finding that post though.
Not sure about the next issue, I have not yet run across that one as of yet.
(I have my fingers crossed and now afraid to go and check the websites!)
Not sure about the next issue, I have not yet run across that one as of yet.
(I have my fingers crossed and now afraid to go and check the websites!)
Thank you I appreciate it but I actually fixed the no input file with the .htaccess I posted but I am still getting index.php?cID= on the home page of my website after I click the home link. I looked at the docs you posted and I have done this already. So I am still in need of a solution.
It has probably something to do with your theme, I would guess that link is hard-coded.
Thank you,
YoYo