0

当我将我的脚本与任何子域[如 http://s.yourdomain.com] 一起使用时创建短 URL 脚本,然后 .htaccess 将不起作用,但脚本在 yourdomain.com/sh/ 等其他位置正常工作

这是我编写的代码 .htaccess

RewriteEngine on 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteCond %{REQUEST_FILENAME}\.php -f 
RewriteRule ^(.*)$ $1.php
RewriteRule ^([a-zA-Z0-9]+)$ index.php?short=$1
ErrorDocument 404 /index.php

想要 .htaccess 代码也可以在子域上工作并执行上述功能

4

1 回答 1

0
RewriteRule ^ http://s.yourdomain.com

在这里,您将传递与我们在移动网站上重定向 url 时相同的子域名。http://m.yourdomain.com

于 2013-05-20T07:24:41.130 回答