1

我在我的 htaccess 中有一个重定向,它在我切换 SEF URL 之前在 joomla 中完美运行

RewriteRule ^m/(.*) /index.php?option=com_seemail&view=mail&guid=$1&itemid=102

但是,当我打开 SEF URLS 时,它不再起作用 - 我被定向到 /home/uncategorised/welcome

这是我的 htaccess :

RewriteEngine On

RewriteRule ^m/(.*) /index.php?option=com_seemail&view=mail&guid=$1&itemid=102

RewriteCond %{REQUEST_FILENAME} !-f 
RewriteRule ^apply$ /index.php?option=com_loans&view=apply&Itemid=102 [R=301,L,QSA]



RewriteBase /
DirectoryIndex index.php

RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
RewriteCond %{QUERY_STRING} base64_encode.*\(.*\) [OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%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,L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$  [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]

有人可以帮忙吗?

4

1 回答 1

0
RewriteRule ^apply$ /index.php?option=com_loans&view=apply&Itemid=102 [R=301,L,QSA]

根据上面的代码行,如果 url 中“apply”之后没有任何内容,它应该重定向到/index.php?option=com_loans&view=apply&Itemid=102并停止查看该案例的其他规则。

正如您所说,它正在重定向,这意味着它正在工作。

可以手动打开吗<yourdomain.com>/index.php?option=com_loans&view=apply&Itemid=102

如果它打开并且 url 是 sef,则复制域后的 sef url 并替换/index.php?option=com_loans&view=apply&Itemid=102为 RewriteRule 中的。

可能这应该有效。

于 2013-02-23T17:59:55.777 回答