Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下代码将所有sitename.com/en/内部链接重定向到sitename.com/ar/相应的链接:
sitename.com/en/
sitename.com/ar/
RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-f RewriteRule ^en/(.*)?$ /ar/$1 [QSA,L]
但它不起作用。它有什么问题?
尝试删除 RewriteCond 行。他们告诉请求的文件名不能是目录或文件。