0

我有一个项目,我可以使用这样的 url 访问:

http://127.0.0.1:9898/frontend_dev.php

当我尝试在没有 frontend_dev.php 的情况下访问相同的 url 时,就像:http: //127.0.0.1 :9898我可以看到主视图,但里面的链接我得到Not found error

这里有什么问题?

4

2 回答 2

1

问题不在于项目配置。我没有可用的 apache 的 mod_rewrite:

要启用 mod_rewrite:

a2enmod rewrite

接着

重新加载所有 apache 配置文件:

service apache2 restart
于 2013-10-17T13:36:02.917 回答
0

1) 请检查您项目的 rood 目录中的 .htaccess 文件。

Options +FollowSymLinks +ExecCGI

<IfModule mod_rewrite.c>
  RewriteEngine On

  # uncomment the following line, if you are having trouble
  # getting no_script_name to work
  #RewriteBase /

  # we skip all files with .something
  #RewriteCond %{REQUEST_URI} \..+$
  #RewriteCond %{REQUEST_URI} !\.html$
  #RewriteRule .* - [L]

  # we check if the .html version is here (caching)
  RewriteRule ^$ index.html [QSA]
  RewriteRule ^([^.]+)$ $1.html [QSA]

  RewriteCond %{REQUEST_FILENAME} !^favicon\.ico
  RewriteCond %{REQUEST_FILENAME} !-f
  # no, so we redirect to our front web controller
  RewriteRule ^(.*)$ index.php [QSA,L]

</IfModule>

2)您可以使用这样的网址访问吗?

h ttp://127.0.0.1:9898/index.php

于 2013-10-18T12:41:38.883 回答