I have a folder "journals" inside my public_html.So my links are like this:
site/journals/index.php/journal1
, site/journals/index.php/journal2
etc.(journal1,journal2 are just illustration.It might be technology,arts etc.)
I have(with help of Jon) .htaccess which is making site/journals/index.php/journal1
to appear as site/index.php/journal1
.
But I am still able to access/view- site/journals/index.php/journal1
.
I want to disable site/journals/index.php/journal1
and only site/index.php/journal1
should be visible.Please let me know how can I do that.
Please check this for more info.
Here is the existing .htaccess in root(/) folder
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/sunder
RewriteRule ^index\.php(.*)$ /sunder/index.php$1? [L]
</IfModule>