【发布时间】:2016-08-08 11:10:30
【问题描述】:
我正在运行我的 php 应用程序
我的目录结构是这样的: C:\wamp\www\网站
我已将 .htaccess 文件放在网站文件夹中。
<IfModule mod_rewrite.c>
#Turn on the RewriteEngine
RewriteEngine On
RewriteBase /website/
#Rules
RewriteRule ^(.*)$ index.php
</IfModule>
当我点击 index.php 时,它会将我带到 http://localhost:8085/ 主页,这是错误的,我想转到 http://localhost:8085/website。
请指导我
【问题讨论】:
-
另一个测试你可以重命名这个 .htaccess 然后再次点击链接看看问题是否得到解决。
标签: php .htaccess url-rewriting