My permalinks seem to have something missing :(
-
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.comMy 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
- The topic ‘My permalinks seem to have something missing :(’ is closed to new replies.