首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

apache重定向页面的守则

2013-01-11 
apache重定向页面的规则就是伪静态页面 我想访问根目录下的cs.html就等于访问cs.php 然后我在.htaccess里

apache重定向页面的规则
就是伪静态页面 我想访问根目录下的cs.html就等于访问cs.php 
然后我在.htaccess里这样写了

RewriteEngine on
RewriteRule cs.html$cs.php [L]

可是提示
---------------------------------------------------------
Not Found
The requested URL /cs.html was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

-------------------------------------------------------------

到底要怎么样写?  求解
[解决办法]
试试:

RewriteRule ^cs.html$ cs.php [L]

热点排行