• Resolved Mr. Bigsby

    (@holgria)


    I’m working with a client and they have wordpress installed on an ip address and skewed file permissions.

    Which file do I need to change the permission on to change the permalink structure?

Viewing 15 replies - 1 through 15 (of 18 total)
  • Their .htaccess file

    Thread Starter Mr. Bigsby

    (@holgria)

    I tried making it 777, then 644 and deleting all of the content of it. Neither changed the pages from ?=99 to /about

    Is mod_rewrite running on the server?

    Thread Starter Mr. Bigsby

    (@holgria)

    Aha. Good question. I’m not able to see that, but I’ve asked the client. We’ll see what the answer is. I appreciate your assistance esmi!

    Thread Starter Mr. Bigsby

    (@holgria)

    Esmi, it is running and active. Any other ideas?

    Have you checked the contents of the .htaccess file? Is it in the WP folder? Is this a Linux server?

    Thread Starter Mr. Bigsby

    (@holgria)

    “This is a new Red Hat Linux install with their version of Apache, in case that helps.”

    .htaccess was in www/html/ but now seems to be gone. What should it say?

    Upload an empty .htaccess file to the WP folder and ensure that it is writeable. Then set the reset the custom permalink structure up again via Settings->Permalinks.

    Thread Starter Mr. Bigsby

    (@holgria)

    it’s permission was set to 666, I tried to change permalink and still no luck. Any ideas? HTACCESS just say begin wordpress, end wordpress with #’s.

    Sounds like it’s not being written to. Can you try changing the permissions on the file to 777 while you set up the custom permalinks?

    Thread Starter Mr. Bigsby

    (@holgria)

    it’s still not working. Is there anything else to try?

    Try adding:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /wordpress/index.php [L]
    </IfModule>
    # END WordPress

    to the .htaccess file manually.

    Thread Starter Mr. Bigsby

    (@holgria)

    That didn’t help. I also tried

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /wordpress/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress

    both at 777

    One other thing you might check would be to just make sure that the FollowSymLinks option and AllowOverride directive have been added to, and properly configured in the virtual host container.

    Thread Starter Mr. Bigsby

    (@holgria)

    @claytonjames — How would I do that?

    I know that AllowOverride is on and we rebooted the server after we switched it on…

    but I’m not having any luck

Viewing 15 replies - 1 through 15 (of 18 total)

The topic ‘Changing Permalink Structure not working’ is closed to new replies.