Permalink problems
-
I made https://www.positivexposure.com last year, and I changed the permalinks with no problems, I don’t remember having to even do anything.
I made https://www.positivexposure.com/blogs/personsnamehere (theyve all been deleted, though) and also changed them with no problem.I’m trying to make https://www.positivexposure.com/australia (it’s up) and i have been having trouble with the permalinks.
There was a 500 error on the entire site when I changed it, so I went to the web.config file and it wouldn’t let me change permissions so I edited it and took out the italic part.<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <em> <rule name="wordpress" patternSyntax="Wildcard"> <match url="*"/> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/> <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/> </conditions> <action type="Rewrite" url="index.php"/> </rule></em> </rules> </rewrite> </system.webServer> </configuration>
doing that brought the main page of the site back, but clicking any pages or posts brought “page not found.” So after a ton of reading here, I added “index.php” into the custom structure and it works.
Luckily at least I can see everything now, but, I really dont want the index.php part there….
I have absolutely no idea what I’m doing with coding or anything, which is why I’m using WordPress (through GoDaddy)….so i need directions a Kindergartener could understand.
- The topic ‘Permalink problems’ is closed to new replies.