We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi I have my rootdir as /data/snmp/, were snmp is soft link. I am able to open login page and then login. But after that links do not work. e.g
if i click on "setting" url changes to "http://xxx.xxx.225.196/snmp/settings/" and error displayed is
Not Found The requested URL /data/snmp/index.php was not found on this server.
in my apache config i have
Alias /snmp /data/snmp <IfVersion >= 2.4> <FilesMatch "\.php$"> SetHandler "proxy:fcgi://127.0.0.1:9000" </FilesMatch> </IfVersion> <Directory /data/snmp/> AllowOverride all <IFModule mod_rewrite.c> RewriteEngine on RewriteBase /snmp/ RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ index.php [NC,L] </IfModule> Require all granted </Directory>
and BASE configured as
if(!defined('BASE')) define('BASE', "/snmp/");
is there anything wrong with my config ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
I have my rootdir as /data/snmp/, were snmp is soft link. I am able to open login page and then login. But after that links do not work. e.g
if i click on "setting"
url changes to "http://xxx.xxx.225.196/snmp/settings/"
and error displayed is
in my apache config i have
and BASE configured as
is there anything wrong with my config ?
The text was updated successfully, but these errors were encountered: