• Hello all,

    I have set up my wordpress on /blog directory

    In the root I have this index.php:

    <?php
    /* Short and sweet */
    define(‘WP_USE_THEMES’, true);
    require(‘./blog/wp-blog-header.php’);
    ?>

    and in the /blog directory:

    <?php
    /* Short and sweet */
    define(‘WP_USE_THEMES’, true);
    require(‘./wp-blog-header.php’);
    ?>

    Thats seems OK but linking to my categories doesn’t work.

    Under Settings – General I have:
    WordPress address (URL) = https://www.fethiye-guide.com/blog
    Blog address (URL) = https://www.fethiye-guide.com

    My permalink structure is:

    Custom = /Turkey/Fethiye/%category%/%postname%

    My .htaccess is:

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    and the permission is set to 666

    You can see the result at https://www.fethiye-guide.com

    Unfortunately the links are not working – but I don’t know what I did wrong ??

    Would really appreciate some help ??

    Thanks

Viewing 1 replies (of 1 total)
  • Thread Starter cattykool

    (@cattykool)

    I notice that even though my permissions are set to 666 for the .htaccess, I still get this notice:

    If your .htaccess file were writable, we could do this automatically …

    Which would seem to indicate that the permissions are not set to write … BUT they are ???

Viewing 1 replies (of 1 total)
  • The topic ‘My permalinks seem to have something missing :(’ is closed to new replies.