.htaccess rewriterule
-
My current .htaccess file:
# 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
Wich fixes the permalinks, but i would like to add another rewrite rule, that changes “https://site.com/wp-content/themes/mystique/intro/intro.html” to “https://site.com”.
So i tried adding
RewriteRule ^wp-content/themes/mystique/intro/intro\.html$ - [L]
, but it doesnt work, did i miss something?
- The topic ‘.htaccess rewriterule’ is closed to new replies.