我最近在PHP中编写了一个自定义CMS脚本,现在我正在尝试重写URL。所以从http://domain.com/page.php?id=ajdsh736hdjd到http://domain.com/information.html。
PHP网站工作正常,我“有点”得到了.htaccess文件。唯一似乎不起作用的是JavaScript代码。当我查看页面的源代码时,我可以单击js文件(位于“javascript”目录中)并在浏览器中打开代码但是没有执行任何JS代码。
在下面找到我正在使用的.htaccess文档(如果您有任何改进,请随时发表评论,我仍然是网址重写的菜鸟。)
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^(administrator¦images¦javascript|stylesheet|tools) - [L]
RewriteRule ^(.*)\.html$ page.php?page=$1
RewriteRule ^(.*)\.html$ member_page.php?page=$1
RewriteCond $1 !^(search\.php)
</IfModule>
答案 0 :(得分:0)
这些必须是竖条:
# -------------------------v------v
RewriteRule ^(administrator|images|javascript|stylesheet|tools) - [L]