我在托管中有 joomla,它运行良好。但我想为应用程序创建一个小型 Web 服务,所以我在根文件夹中创建了一个子文件夹,以便像这样访问:www.mydomain.com/myfolder
问题是,.htaccess 会自动将我重定向到 joomla 索引。我根本没有 .htaccess 配置的经验。我一直在阅读一些教程,但是每次我更改某些内容时,joomla 都会停止正常工作。这是我的 htaccess 文件:
rewriterule ^component/users/(.*)$ index.php?option=com_comprofiler&task=login [L]
rewritecond %{QUERY_STRING} base64_encode[^(]*\([^)]*\) [OR]
rewritecond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
rewritecond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
rewritecond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
rewriterule .* index.php [F]
rewriterule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
rewritecond %{REQUEST_URI} !^/index\.php
rewritecond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
rewritecond %{REQUEST_FILENAME} !-f
rewritecond %{REQUEST_FILENAME} !-d
rewriterule .* index.php [L]
创建子域不是一种选择(我只能访问 ftp)
谢谢