Cannot Get Apache Module to Work At all?
-
HI there,
I’ve installed the plugin, pointed the module to the full path and filename for my .htaccess.
I then created a group for the relevant 301’s, and entered the full URL’s to redirect.
The plugin can write to the .htaccess file, but the redirect doesn’t work.
Here is a copy of the .htaccess file after the plugin has written to it. Any assistance would be appreciated.
.htaccess content:
# 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
# Wordfence WAF
<IfModule LiteSpeed>
php_value auto_prepend_file ‘/home/manhattangino/public_html/wordfence-waf.php’
</IfModule>
<Files “.user.ini”>
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
</Files># END Wordfence WAF
# Created by Redirection
# Thu, 05 Jan 2017 01:37:58 +0000
# Redirection 2.5 – https://urbangiraffe.com/plugins/redirection/<IfModule mod_rewrite.c>
RewriteRule ^/contact\.htm$ https://www.manhattanmusic.com.au/contact-us/ [R=301,L]
</IfModule># End of Redirection
- The topic ‘Cannot Get Apache Module to Work At all?’ is closed to new replies.