Hello Ales,
regarding this setting: This only works while using WordPress at in his own directory.
For example domain.ltd/wordpress
But if I make the page accessible via domain.ltd, the session is lost if I go while administrator to the frontend.
I make changes using this method:
– delete .htaccess files under domain.ltd/wordpress and domain.ltd
– index.php under domain.ltd
with this content:
define( 'WP_USE_THEMES', true );
/** Loads the WordPress Environment and Template */
require( dirname( __FILE__ ) . '/wordpress/wp-blog-header.php' ) ;
– In WordPress, change the path under Settings-General (second line to domain.ltd) and rewrite the permalinks, which will write a new .htaccess under domain.ltd.
The side is over https and WPS Hide Login to change the login.
This is the .htaccess under domain.ltd
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# 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]
</IfModule>
# END WordPress
At advanced setting under Custom Login URL is the same from WP Hide Login.
And custom header script I’ve tried domain.tld/wp-admin/admin-ajax.php and domain.tld/wordpress/wp-admin/admin-ajax.php
Any hint?
THX
Henry