我有一个项目,我可以使用这样的URL访问:
http://127.0.0.1:9898/frontend_dev.php
当我尝试访问没有frontend_dev.php的同一个网址时,就像:http://127.0.0.1:9898我可以看到主视图,但我看到里面的链接找不到错误。
这里有什么问题?
答案 0 :(得分:1)
问题不在于项目配置。我没有apache的mod_rewrite可用:
启用mod_rewrite:
a2enmod rewrite
然后
重新加载所有apache配置文件:
service apache2 restart
答案 1 :(得分: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