我正在使用Joomla 2.5附带的标准.htaccess文件。 Joomla安装在根目录中,我正在使用搜索引擎友好的URL。
我可以在.htaccess文件的开头添加一些东西,它会在url中检查我的自定义目录并允许正常访问,而不会重写任何URL吗?
例如,如果我想将customdir /作为我的所有自定义页面和脚本的目录,我会链接到http://mysite.com/customdir/customscript.php
之类的内容这可能吗?
答案 0 :(得分:1)
您可以尝试在标准 Joomla .htaccess文件中添加以下两行注释内的这些行:
## Begin - Custom redirects
RewriteCond %{REQUEST_URI} ^/customdir [NC]
RewriteCond %{REQUEST_URI} !customscript\.php [NC]
RewriteRule .* /customdir/customscript.php [L]
## End - Custom redirects
静默地映射:
http://mysite.com/customdir/
或
http://mysite.com/customdir/anything/
要:
http://mysite.com/customdir/customscript.php
对于永久和可见重定向,将[L]替换为[R = 301,L]