Password request via HTACCESS required
-
Hello,
I am currently testing Ninja Tables (to replace TablePress).
When I insert a table on my homepage and open the page in the browser, I have to enter a password for HTACCESS.If I do not enter a password, the table is not loaded.
I have currently secured access to WP-Login.php in HTACCESS. All other pages are running normally so far. The table using TablePress is displayed normally.
What could be the reason for this?
Thanks and greetings
Ralph# Verbietet allen den Zugang zur wp-config
<files wp-config.php>
order allow,deny
deny from all
</files>
# Kennwortabfrage bei Zugriff auf WP-Login
<Files wp-login.php>
</Files>
#Zugriffe auf .htaccess verhindern
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</files>
# BEGIN WordPress
# Die Anweisungen (Zeilen) zwischen ?BEGIN WordPress“ und ?END WordPress“ sind
# dynamisch generiert und sollten nur über WordPress-Filter ge?ndert werden.
# Alle ?nderungen an den Anweisungen zwischen diesen Markierungen werden überschrieben.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME}!-f
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.