Hi I am facing an issue with my godaddy hosted site.. Just tried installing an article script at --http://articles.seolion.com which uses articlems script.. The links are not working because of the mod_rewrite issue Godaddy support says its enabled.. I have a custom php.ini file.. What can be done? Do anybody else have experience with godaddy and mod_rewrite ?
RewriteEngine on RewriteCond %{REQUEST_METHOD} !^(TRACE|TRACK|GET|POST|HEAD)$ RewriteRule .* - [F] this should do the trick
some details for an alternative way can be found here : http://forum.joomla.org/index.php/topic,1094.0.html
Oops.. thanks for the replies.. But I acted little early.. I cancelled my hosting account with them as I had no clue. Even the support didn't help me much. But no loss as such and I got the refund after deducting one months price. Thank you again.. Maybe when I think of them again it will be useful.
I added the "RewriteBase /" as well and that helped me. <IfModule mod_php4.c> php_value session.use_only_cookies 1 php_value session.use_trans_sid 0 </IfModule> <IfModule mod_rewrite.c> Options +FollowSymLinks RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule .* index.php [QSA,L] </IfModule> RewriteBase /
Maybe that one month account I had with godaddy , I face the stated issue (thread start). I have an account with godaddy now and I dont have any issue now. They had taken my feedbacks when I opted out of the initial account and its really good work by them to make things work.
To enable mod_rewrite on go daddy i did the following Options +FollowSymLinks RewriteEngine on RewriteBase / then my rewrite rules. That worked
I browsed to this site in complete dispair at what I was assuming was a .htaccess issue. This post did it, and has rescued my evening and marriage. Thank you, works like a charm on Godaddy. John
Hi Guys, i had the same problem: "Server Error 500" on godaddy hosting. I added the lines at the end of an Joomla 1.5.2.2: ################################################### RewriteCond %{REQUEST_METHOD} !^(TRACE|TRACK|GET|POST|HEAD)$ RewriteRule .* - [F] <IfModule mod_rewrite.c> Options +FollowSymLinks RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule .* index.php [QSA,L] </IfModule> RewriteBase / #and it works perfect!! ################################################### I found an other thing in joomla documentation to test rewrite and i modified by my self. The feature is, that I test to redirect to an external website which is working, so i use for every path an other website. See here: ################################################### Options +FollowSymLinks Redirect /home/content/09/767453/html/subdomain/SubDomainName/apache-test html http://www.zwilla-research.com Redirect /subdomain/SubDomainName/apache-test html http://geely.zwilla-research.com Redirect /SubDomainName/apache-test html http://www.zwilla-park.com Redirect /apache-test html http://www.tinyca.com ################################################### And on Godaddy it ist working the last one: Redirect /apache-test html http://www.tinyca.com And i found out, that on an original Joomla 1.5.2.2 Installation and JooSEF added lines, there was missing one line: RewriteCond %{REQUEST_FILENAME} !-l Thankx for this helping Thread here on digitalpoints.com Zwilla
Try this to move these to the top then let's know if it's working for you Options +FollowSymLinks RewriteEngine on RewriteBase /