我正在重定向htaccess中的一堆URL
我遇到一个问题,即如果要重定向的URL有一个名为数字的文件夹,该文件夹仍保留在重定向的uRL中
例如: 重定向:/index.php/news/15/rhs 到 http://www.domain.com/news/rhs/ 最终为 http://www.domain.com/news/15/rhs/
我不想在最终网址
中使用 / 15 /所有其他不包含名为number的文件夹的重定向都可以正常工作。
新网站是Wordpress,当前的mod_rewrite是:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
非常感谢任何帮助。