好的,我在.htaccess文件中使用此代码。这是唯一的代码,但它似乎根本不起作用,我知道我已经安装并启用了mod_rewrite。
RewriteEngine On
RewriteRule ^news\.js news.php [NC]
也试过这个:
RewriteEngine On
RewriteRule news.js news.php [NC]
好的,所以,我正在使用news.php来输出我链接到其他地方的JS脚本。所以我希望所有链接到news.js(以及此后的所有文本链接),指向news.php。所以news.php为此输出Javascript,但是是一个PHP文件...
我是否正确设置了PHP文件?
<?php
// If there is a php error for any reason...hide it!
ini_set('display_errors', 'Off');
// Set the header-type.
header('Content-type: application/x-javascript');
// And it calls some functions in here
?>
问题在于它无法正常工作。有人可以帮帮我吗?我的.htaccess文件没有正确设置吗?
感谢您提供给我的任何帮助。
答案 0 :(得分:0)
您是否已启用AllowOverride以使.htaccess正常工作? http://www.blackbeagle.com/web-hosting/apache-mod_rewrite-and-allowoverride/