【发布时间】:2016-10-17 16:33:28
【问题描述】:
根目录是文件index.php和.htaccess配置文件。如何使用字符串 http://mysite.loc/1、http://mysite.loc/2 和 http://mysite.loc/ 对 /(主页)中的所有 URL 进行 301 重定向,但 URL'a ?
例如:
http: //mysite.loc/ (URL available, show index.php)
http: //mysite.loc/1 (URL available, show index.php)
http: //mysite.loc/2 (URL available, show index.php)
http: //mysite.loc/testing (301 redirect on /)
http: //mysite.loc/qwerty (301 redirect on /)
问题在于无限重定向到主页。
注意:只能在配置文件.htaccess中创建规则,不能使用PHP-scripts。
所有可用的 URL 都指向 /(index.php 文件)
【问题讨论】:
标签: regex apache .htaccess mod-rewrite