nette,本地主机,子文件夹上的 404
nette, localhost, 404 on subfolders
我是 运行 在本地主机上使用 XAMPP 的 nette 框架。当我转到索引页面时,一切都很好,但是当我单击某些子页面的 URL 时,出现 404 错误。
我在 apache (httpd-vhosts.conf) 中设置了我的文档文件夹的别名:
Alias /documents "C:/Users/username/Documents"
<Directory "C:/Users/username/Documents">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
当我使用 URL http://localhost/documents/git/projectXY/www/ 进入索引页面时一切正常
但是当我点击 URL http://localhost/documents/git/projectXY/www/customer/sign/in 的 Sing in 按钮时,我收到 404 错误
在 www 文件夹中我有 htaccess:
# Apache configuration file (see httpd.apache.org/docs/current/mod/quickreference.html)
# disable directory listing
<IfModule mod_autoindex.c>
Options -Indexes
</IfModule>
# enable cool URL
<IfModule mod_rewrite.c>
RewriteEngine On
# RewriteBase /
# prevents files starting with dot to be viewed by browser
RewriteRule /\.|^\. - [F]
# front controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(pdf|js|ico|gif|jpg|png|css|rar|zip|tar\.gz|map)$ index.php [L]
</IfModule>
# enable gzip compression
<IfModule mod_deflate.c>
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript application/json application/xml image/svg+xml
</IfModule>
</IfModule>
知道我做错了什么吗?
解决方案:
由于服务器别名,问题出在 .htaccess 中。
我刚刚变了
# RewriteBase /
至
RewriteBase /documents/git/projectXY/www/
我是 运行 在本地主机上使用 XAMPP 的 nette 框架。当我转到索引页面时,一切都很好,但是当我单击某些子页面的 URL 时,出现 404 错误。
我在 apache (httpd-vhosts.conf) 中设置了我的文档文件夹的别名:
Alias /documents "C:/Users/username/Documents"
<Directory "C:/Users/username/Documents">
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>
当我使用 URL http://localhost/documents/git/projectXY/www/ 进入索引页面时一切正常
但是当我点击 URL http://localhost/documents/git/projectXY/www/customer/sign/in 的 Sing in 按钮时,我收到 404 错误
在 www 文件夹中我有 htaccess:
# Apache configuration file (see httpd.apache.org/docs/current/mod/quickreference.html)
# disable directory listing
<IfModule mod_autoindex.c>
Options -Indexes
</IfModule>
# enable cool URL
<IfModule mod_rewrite.c>
RewriteEngine On
# RewriteBase /
# prevents files starting with dot to be viewed by browser
RewriteRule /\.|^\. - [F]
# front controller
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !\.(pdf|js|ico|gif|jpg|png|css|rar|zip|tar\.gz|map)$ index.php [L]
</IfModule>
# enable gzip compression
<IfModule mod_deflate.c>
<IfModule mod_filter.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/javascript application/json application/xml image/svg+xml
</IfModule>
</IfModule>
知道我做错了什么吗?
解决方案: 由于服务器别名,问题出在 .htaccess 中。
我刚刚变了
# RewriteBase /
至
RewriteBase /documents/git/projectXY/www/