FYI: Permalinks issue solved at Network Solutions
-
Well, I poluted these airwaves with several postings trying to fix permalinks in my Networks Solutions’ hosted site. I joined a discussion, trying to understand how permalinks work. Later I was told by Network Solutions that they didn’t support
mod_rewrite
, but then I couldn’t get them to work withoutmod_rewrite
either! I requested feedback from anyone who might have gotten them to work on a Networks Solutions hosted site. Lastly, I sent a final cry for help, trying to make permalinks work, withoutmod_rewrite
to no avail. I gave up, destined to deal with URLs that have question marks…I was lucky enough to be contacted by the Director of Product Development of Network Solutions (for a different issue), and he confirmed that they do have
mod_rewrite
enabled. He took a personal interest in my situation and found the problem within the.htaccess
file: None of the regular expressions was being executed!All the regular expressions begin with
^blah-blah/…
but it seems that the regexp module gets strings of the form/blah-blah/…
so there is no match. Substituting the^
character to be^/
fixed the problem!I don’t know why the expressions work for other people as they are output by WordPress a€?? frankly I don’t care :wink:.
Interestingly enough, the installation at Network Solutions is such that it completely ignores the value of RewriteBase. I can set it to whatever nonsense I want, it won’t make a difference. I say this because it may be a clue as to why the strings are being passed with the initial character being a forward slash.
Bottom line: If your permalinks don’t work, and you want to try one more thing, edit the
.htaccess
file that WordPress generates and replace the^
character at the beginning of each RewriteRule to be^/
.Thanks to all who tried to help.
Rafael Bracho
- The topic ‘FYI: Permalinks issue solved at Network Solutions’ is closed to new replies.