如何创建不存在的网址?例如,https://twitter.com/i/notifications - 有效。当您从链接中删除 / notifications 时,您会获得https://twitter.com/i/ - 不起作用。< / strong>但此网址 / i / 并不存在。
我该如何制作类似的东西?
答案 0 :(得分:1)
您可以创建一个.htaccess文件,该文件通过单个PHP文件路由所有请求,然后使用该PHP文件中的逻辑来确定该URL是否存在。例如,您可以使用我的CodeIgniter .htaccess文件:
RewriteCond $1 !^(index\.php|images|css|fonts|js|robots\.txt|test)
RewriteRule ^(.*)$ /index.php/$1 [L]
这使您仍然可以指定不会重新映射的图像,css,js等,但任何不以这些字符串开头的网址都将被路由到index.php。在index.php中,您可以检查查询字符串以确定如何处理URL并确定它们是否存在。
// code in index.php, modify to suit
switch ($_SERVER["PATH_INFO") { // you might also check out REQUEST_URI
case "foo":
// do blah blah blah
break;
case "bar":
// do other blah blah blah
break;
default:
header("HTTP/1.0 404 Not Found");
echo "Sorry but that page was not found";
}
答案 1 :(得分:1)
您可以通过编辑.htaccess
文件来使用网址重写。如果.htaccess
不存在,那么您可以在项目根目录上创建一个。
RewriteEngine on
RewriteRule ^/?Some-text-goes-here/([0-9]+)$ /picture.php?id=$1
以上内容会将url.com/picture.php?id=51
转换为picture.php/Some-text-goes-here/51
以同样的方式,你可以使用你的strtagy。
答案 2 :(得分:1)
感谢大家的帮助!
最终解决方案:RewriteRule ^/?i(/.*)?/company /company [L,NC]