【发布时间】:2014-05-24 23:29:24
【问题描述】:
动态网址:http://localhost/?langName=spa
重写后的网址:http://localhost/spa
这是.htaccess的全部内容:
DirectoryIndex ed.php
<IfModule mod_rewrite.c>
RewriteEngine On
Options +FollowSymlinks
RewriteBase /
RewriteRule //(.*)/(.*)/$ /?$1=$2
</IfModule>
结果:
The requested URL /spa was not found on this server.
Apache/2.0.59 (Win32) PHP/5.2.3 Server at localhost Port 80
请问,哪里出错了? 谢谢!
【问题讨论】:
-
此 RewriteRule 应将重写的 URL (
http://localhost/spa) 转换为动态 URL (http://localhost/?langName=spa)。样本来自RewriteRule Generator
标签: apache mod-rewrite localhost