我对 url 中使用的冒号有疑问
这是我的网址
http://localhost/1:1
这是我的 htaccess
RewriteEngine On
RewriteRule ^/(.*):(.*) index.php/$1:$2
此错误显示 Forbidden 您无权访问此服务器上的 /1:1。
# Virtual Hosts
#
<VirtualHost *:80>
ServerName localhost
ServerAlias localhost
DocumentRoot "${INSTALL_DIR}/www"
<Directory "${INSTALL_DIR}/www/">
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride all
Order Allow,Deny
Allow from all
</Directory>
</VirtualHost>