Network Solutions mod_rewrite SEF URLs [SOLVED]

Joomla versions 2.5, 1.7 and 1.6 are all end-of-life since December 31st 2014 and are no longer supported. Please use Joomla 3.x instead.

Moderator: General Support Moderators

Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Locked
User avatar
rholzler
Joomla! Apprentice
Joomla! Apprentice
Posts: 8
Joined: Thu Feb 26, 2009 3:51 pm
Location: Sarasota, FL
Contact:

Network Solutions mod_rewrite SEF URLs [SOLVED]

Post by rholzler » Wed Aug 14, 2013 1:18 pm

After many days and numerous calls to Network Solutions, I was not able to get SEF URL's to load on my site. I got "503 Server Error" and "Connection Reset By Server" errors on all sub-pages. Their standard answers were:

1) This is a "latency issue." (Which they could not explain.)
2) Update your Joomla (it was the latest version)
3) Check your error logs, which would be available in 30 days (REALLY?! Yes, really.)
4) Optimize your database (didn't have any effect)
5) Pay us to customize your scripts (not happening!)

After much frustration, I finally stumbled upon this solution and I am happy to share it with you. At the bottom of the .htaccess file make the following changes

Code: Select all

#RewriteRule .* index.php [L]
RewriteRule ^(.*)$ /index.php?url=$1
The first line, add the # to disable the Joomla! standard rewrite rule and add the second line which works for Network Solutions Unix hosting.
Robert Holzler
Web Developer
http://whiteboardstrategy.com/blog.html

eduardoescdel
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 195
Joined: Mon Dec 17, 2012 12:42 am
Location: Bolívar, Venezuela

Re: Network Solutions mod_rewrite SEF URLs [SOLVED]

Post by eduardoescdel » Fri Aug 16, 2013 2:35 pm

Hi, thanks for sharing this.

I must say that sometime ago i faced an issue similar to yours and i fixed it by changing that line of code too, but i did it just by adding a slash before index.php:

Code: Select all

RewriteRule .* index.php [L]
Became:

Code: Select all

RewriteRule .* /index.php [L]
Need assistance? HTML / CSS / JS services https://www.freelancer.com/u/Torricelli.html

User avatar
brianpeat
Joomla! Apprentice
Joomla! Apprentice
Posts: 27
Joined: Tue Jul 10, 2007 3:04 pm
Location: Hendersonville, TN, USA
Contact:

Re: Network Solutions mod_rewrite SEF URLs [SOLVED]

Post by brianpeat » Fri Oct 10, 2014 3:17 pm

Thank you for this! I was pulling my hair out trying to figure out why pages were failing and then not and then failing again.

adding that single / before index.php fixed it.
Brian Peat,
Owner, Peat Creative
https://peatcreative.com

robertclinton
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Fri Feb 22, 2013 5:17 pm
Location: Rhode Island, USA
Contact:

Re: Network Solutions mod_rewrite SEF URLs [SOLVED]

Post by robertclinton » Sat Oct 11, 2014 3:42 pm

I found this posting in Network Solutions forum.

Changed this line in the HTACCESS

# RewriteBase /

to

RewriteBase /

This solved the issue for me.


Locked

Return to “Installation Joomla! 2.5”