Hi,
There are some files that doesn't exist in the compressed file returned by the bnsupport tool, I don't know if it is because the tool was not able to obtain them or because those files doesn't exists. I want to check those sections:
- Edit
/installdir/apps/wordpress/conf/htaccess.conf (create it if it doesn't exist) add at the beginning of the file the second big block of code surrounded with
<Directory "installdir/apps/wordpress/htdocs"> COPY HERE THE SECOND BLOCK OF CODE </Directory>
Again, the result should be similar to this:
<Directory "installdir/apps/wordpress/htdocs">
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
</Directory>
- Finally, edit
/installdir/apps/wordpress/conf/httpd-app.conf. This file is the main application configuration file. Add here (if it wasn't) the htaccess.conf file, just writing the following line at the end of the file.
Include "/installdir/apps/wordpress/conf/htaccess.conf"
Please, can you paste here the content of the following files?
- /installdir/apps/wordpress/conf/httpd-app.conf
- /installdir/apps/wordpress/conf/htaccess.conf
Best regards,
Carlos R. Hernández