我的public_html中有一个文件夹“journals”。所以我的链接是这样的:
site/journals/index.php/journal1
, site/journals/index.php/journal2
etc.(journal1,journal2 只是插图。可能是技术、艺术等)
我有(在乔恩的帮助下).htaccess 正在site/journals/index.php/journal1
显示为.htaccess site/index.php/journal1
。
但我仍然可以访问/查看- site/journals/index.php/journal1
。
我想禁用site/journals/index.php/journal1
并且只site/index.php/journal1
应该是可见的。请让我知道我该怎么做。
请检查此以获取更多信息。
这是根(/)文件夹中现有的 .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/sunder
RewriteRule ^index\.php(.*)$ /sunder/index.php$1? [L]
</IfModule>