我需要使用.htaccess文件将一个URL重定向到另一个URL。
我有此链接:http://example.org/download/p/fileId_1050/productId_354,当前给我一个404错误,我希望将此链接重定向到此链接:http://example.org/publication/9-steps-to-procuring-accessible-icts-for-inclusive-education。
到目前为止,我已经尝试过:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^example\.org\download\p\fileId_1050\productId_354$ RewriteRule (.*)$ http://example.org/publication/9-steps-to-procuring-accessible-icts-for-inclusive-education/$1 [R=301,L]
答案 0 :(得分:0)
您的重写器看上去正在重写对该URL的每个请求,并且您的语法不正确。
RewriteEngine On
RewriteRule ^download/p/fileId_1050/productId_354$ http://example.org/publication/9-steps-to-procuring-accessible-icts-for-inclusive-education [R=301,L]