Ok i found the settings > Permalinks hyerlink and the problem is I cant post images so, the selected format is https://www.santiapps.com + /%postname%/ but if i add the /wordpress_2/ subfolder and save changes, it comes back without saving.
Settings > WordPress Address URL: https://santiapps.com/wordpress_2
Settings > Site Address URL: https://santiapps.com
So here it is:
A>>wp-config.php
I looked into wp-config and this section:
define('WP_DEBUG', true);
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
define('ABSPATH', dirname(__FILE__) . '/');
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
which could also be an option…
B>>.htaccess
Im thinking its an .htaccess rewrite that I’ve got wrong. Because this same structure, used to work before wp-config and .htaccess got wiped clean. This is what it looks like at present:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
#RewriteRule . /index.php [L]
RewriteRule . /wordpress_2/index.php [L]
#RewriteCond %{HTTP_HOST} santiapps.com$
#RewriteCond %{REQUEST_URI} !^/wordpress_2
#RewriteRule ^(.*)$ https://www.santiapps.com/wordpress_2/$1 [R=301,L]
</IfModule>
# END WordPress
Oooohh! I think it works now…Yes
Now the only thing missing is the css for the admin panel formatting. Not sure where that would be? Im looking in appearance but I dont see anything.
-
This reply was modified 3 years, 9 months ago by
marciokoko. Reason: edited code
-
This reply was modified 3 years, 9 months ago by
marciokoko.