Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Ajax serach Pro does not work anymore › Reply To: Ajax serach Pro does not work anymore
Hi Ernest,
Thanks a lot for your reactivity and the quick fix, greatly appreciated 🙂
Sorry for my late answer, I had a few days off 😉
So, here is the content of .htaccess file:
# Begin Force HTTPS
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} !on
RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# End Force HTTPS
# BEGIN WordPress
# Les directives (lignes) entre « BEGIN WordPress » et « END WordPress » sont générées
# dynamiquement, et doivent être modifiées uniquement via les filtres WordPress.
# Toute modification des directives situées entre ces marqueurs sera surchargée.
<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
# Desactivates folders content display
Options All -Indexes
# Hides server infos
ServerSignature Off
# Protects file wp-config.php
<files wp-config.php>
order allow,deny
deny from all
</files>
# Protects files .htaccess et .htpasswds
<Files ~ “^.*\.([Hh][Tt][AaPp])”>
order allow,deny
deny from all
satisfy all
</Files>
# Activates symbolic links follow
Options +FollowSymLinks
I don’t see incorrect .htaccess rule or a mod_rewrite condition, but I’m no expert…
In addition, the wp-content/cache/ folder actually exists, and there is a folder “asp” inside for the plugin, with files into it (enclosed screen-1) but it may have appeared after your fix.
For permissions applied to wp-content/cache/ please see screen-2 as I don’t know whether this is correct or not…
Thanks,
Jean-Ghislain