Need help with htaccess file
-
Hello,
I use wordpress permalinks and also a mod_rewrite rule for the ecommerce part of my website. I’m having an issue getting both mods to work. Here is what I have in my .htaccess file:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressOptions +FollowSymLinks
RewriteEngine on
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule (.*)$ /handle_url.php [L]If I take off the wordpress section the ecommerce works, but then wordpress is broken, but with the wordpress on the ecommerce is broken…
Can someone tell me what I’m doing wrong, and how to get both to work. THANK YOU MUCHO GRANDE!
The topic ‘Need help with htaccess file’ is closed to new replies.