• Hi,

    I have a problem with the display of REMOTE_USER in all pages.
    The home page displays well my username, but when I try to access other pages, I have the 404.

    My httpd.conf

    [ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]

    <IfModule mod_authnz_sspi.c>
        <Directory "C:/xampp/htdocs">
    Options None
    AllowOverride All
    Order allow,deny
    Allow from all
    #AuthName "SSPI Protected Place"
    AuthType SSPI
    SSPIAuth On
    SSPIAuthoritative On
    SSPIOfferBasic On
    SSPIOmitDomain On
    Require valid-user
    </Directory>
    </IfModule>

    My file / xampp htdocs / test / .htacess

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /test/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /test/index.php [L]
    RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
    </IfModule>

    OS: Windows Server 2012
    Xampp: 1.8.3-4
    Wordpress 3.9.1

    Thank You.

The topic ‘REMOTE_USER – ERROR 404’ is closed to new replies.