Apache rewrite URL not working in vhost.conf
0
this my vhost.conf <VirtualHost *:80> <files xmlrpc.php> order allow,deny deny from all </files> ServerName www.myserver.com ServerAlias myserver.com DocumentRoot /var/www/vhosts/www.myserver.com <Directory /var/www/vhosts/www.myserver.com> Options Indexes FollowSymLinks AllowOverride All Require all granted # AllowOverride None #Order Allow,Deny #Allow from All #Deny from 124.43.19.230 <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] # Restrict access to PHP files from plugin and theme...