Redirection: .htaccess

Hi @asmecher;

I got an issue for redirection of site. I checked with my hosting and they told me to check with you. The problem, as mentioned by them, is “htaccess”. This is URL of my site that the name is repeated:
http://www.journal-of-insurance-and-financial-management.com/journal-of-insurance-and-financial-management/index.php/JIFM

What directives do you have in your .htaccess file, and what is your base_url setting in config.inc.php?

Hi @ctgraham;

Thank you for your reply. Answer for your first question:

RewriteEngine on
RewriteCond %{REQUEST_URI} !journal-of-insurance-and-financial-management/
RewriteCond %{HTTP_HOST} ^journal-of-insurance-and-financial-management.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.journal-of-insurance-and-financial-management.com$
RewriteRule (.*) /journal-of-insurance-and-financial-management/$1 [L]

Answer for your second question:

; The canonical URL to the OJS installation (excluding the trailing slash)
base_url = "http://www.journal-of-insurance-and-financial-management.com"

You are adding the repetition of the site name with the rewrite rule in your .htaccess. What are you actually intending there?